您好,登錄后才能下訂單哦!
本文實例為大家分享了JS實現字體背景跑馬燈的具體代碼,供大家參考,具體內容如下
知識點
1.通過 @keyframes 規(guī)則,創(chuàng)建動畫。
2.背景作用域:
background-clip: text; -webkit-background-clip: text;
3.background-position定位背景圖像
4.color: transparent 全透明
運行效果
代碼
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> div{ text-align: center; background-color: black; padding: 10px 0; } .animated { font-family: 華文行楷, cursive; margin: 0; padding: 0; font-size: 100px; background: url('text-bg.png') no-repeat; background-clip: text; -webkit-background-clip: text; color: transparent; animation: moveBg 90s linear infinite; -webkit-animation: moveBg 90s linear infinite; } @keyframes moveBg { 0% { background-position: 0 30%; } 100% { background-position: 100% 50%; } } </style> </head> <body> <div> <h2 class="animated">歡迎到來</h2> </div> </body> </html>
所使用的背景圖片
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。