您好,登錄后才能下訂單哦!
圖片描述:箭頭指向部分,以白色為背景,從左向右滾動。(不適用于IE)
<div> 例子: <div class="box"> <span class="box-text">滾動的文字,我是滾動的文字</span> </div> </div>
.box { height: auto; background-color: blue; } .box-text{ color: white; background: -ms-gradient(linear,left top,right top,color-stop(0,#4d4d4d),color-stop(.4,#4d4d4d),color-stop(.5,#fff),color-stop(.6,#4d4d4d),color-stop(1,#4d4d4d)); background: -webkit-gradient(linear,left top,right top,color-stop(0,#4d4d4d),color-stop(.4,#4d4d4d),color-stop(.5,#fff),color-stop(.6,#4d4d4d),color-stop(1,#4d4d4d)); background-clip: text; -webkit-text-fill-color: transparent; animation: slidetounlock 3s infinite; -webkit-animation: slidetounlock 3s infinite; } @-webkit-keyframes slidetounlock{ 0% { background-position:-200px 0 } 100% { background-position:200px 0 } }
1、動畫效果
@-webkit-keyframes
定義一組動畫,在本動畫中,將背景的位置進(jìn)行了改變(注意是文本的位置)
2、背景為何選擇到文本而不是整塊背景?
background-clip: text; 作用:指定繪圖區(qū)的背景 除了text外,還包括 :border-box|padding-box|content-box;三個屬性
3、怎么實現(xiàn)一小段的變化效果的呢?
gradient()
作用:漸變
從實際效果中看到,白色部分之外都是灰色,越是靠近白色,就越白。
-ms-gradient(linear,left top,right top,color-stop(0,#4d4d4d),color-stop(.4,#4d4d4d),color-stop(.5,#fff),color-stop(.6,#4d4d4d),color-stop(1,#4d4d4d));
說明:漸變類型,線性漸變(z=x*y)
to left:
設(shè)置漸變?yōu)閺挠业阶蟆O喈?dāng)于: 270deg
to right:
設(shè)置漸變從左到右。相當(dāng)于: 90deg
to top:
設(shè)置漸變從下到上。相當(dāng)于: 0deg
to bottom:
設(shè)置漸變從上到下。相當(dāng)于: 180deg。這是默認(rèn)值,等同于留空不寫。
這樣就實現(xiàn)了漸變字體部分
-webkit-text-fill-color: transparent;
字體填充顏色:繼承與背景,所以字體顏色為設(shè)置的box-text的background ,而非box的背景顏色。
就這樣加上一個動畫,循環(huán)移動,就是實現(xiàn)了。
以上就是css如何實現(xiàn)滾動文字,實現(xiàn)滾動文字的代碼的簡略介紹,當(dāng)然詳細(xì)使用上面的不同還得要大家自己使用過才領(lǐng)會。如果想了解更多,歡迎關(guān)注億速云行業(yè)資訊頻道哦!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。