97久久国产亚洲精品超碰热,成人又色又爽的免费网站,色偷偷女人的天堂a,男女高潮喷水在线观看,国内精品一线二线三线区别在哪里

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

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

作者: gzwnzss888    時(shí)間: 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://r615.cn/) Powered by Discuz! X5.0