久久久久av_欧美日韩一区二区在线_国产精品三区四区_日韩中字在线

Discuz! 官方交流社區(qū)

標(biāo)題: html文字掃光特效 [打印本頁]

作者: gzwnzss888    時間: 2022-10-3 12:03
標(biāo)題: html文字掃光特效
HTML內(nèi):
  1. <div class="music-title">你的文字內(nèi)容</div>
復(fù)制代碼
CSS:
  1. <style scoped>
  2.     .music-title{
  3.         color: #040404;
  4.         background-image: -webkit-linear-gradient(left,
  5.         #FEFDFC,
  6.         #070707 25%,
  7.         #070707 50%,
  8.         #070707 75%,
  9.         #070707 100%);
  10.         -webkit-text-fill-color: transparent;
  11.         -webkit-background-clip: text;
  12.         -webkit-background-size: 150% 100%;
  13.         -webkit-animation: masked-animation 5s infinite linear;
  14.     }

  15.     @-webkit-keyframes masked-animation {
  16.         0% {
  17.             background-position: 0 0;
  18.         }
  19.         100% {
  20.             background-position: -100% 0;
  21.         }
  22.     }
  23. </style>
復(fù)制代碼







歡迎光臨 Discuz! 官方交流社區(qū) (http://www.9999xn.com/) Powered by Discuz! W1.0