這篇文章帶給大家的內容是關於如何使用CSS實現漸變色動畫邊框的效果(附程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。
https://github.com/comehope/front-end-daily -challenges/tree/master/016-colorful-gradient-animated-border
#dom,一個容器包含一些文字:
<div> you are my<br> FAVORITE </div>
居中顯示:
html, body, .box { height: 100%; display: flex; align-items: center; justify-content: center; }
設定頁面背景色:
body { background: #222; }
設定容器和文字樣式:
.box { color: white; font-size: 2.5em; width: 10em; height: 5em; background: #111; font-family: sans-serif; line-height: 1.5em; text-align: center; border-radius: 0.2em; }
用偽元素增加一個背板:
.box { position: relative; } .box::after { content: ''; position: absolute; width: 102%; height: 104%; background-color: orange; z-index: -1; border-radius: 0.2em; }
把背板設定為漸層色的:
.box::after { /*background-color: orange;*/ background-image: linear-gradient(60deg, aquamarine, cornflowerblue, goldenrod, hotpink, salmon, lightgreen, sandybrown, violet); }
為背板設定動畫效果:
.box::after { background-size: 300%, 300%; animation: animate_bg 5s ease infinite alternate; } @keyframes animate_bg { 0% { background-position: 0%, 50%; } 50% { background-position: 100%, 50%; } 100% { background-position: 0%, 50%; } }
最後,再為文字增加變色效果:
.box { animation: animate_text 2s linear infinite alternate; } @keyframes animate_text { from { color: lime; } to { color: yellow; } }
大功告成!
相關推薦:
如何使用CSS和混色模式實作loader動畫效果(附程式碼)
以上是如何使用CSS實現漸變色動畫邊框的效果(附代碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!