去评论
dz插件网

html文字扫光特效

xiao9469
2022/10/03 11:25:15
HTML内:
  1. <div class="music-title">你的文字内容</div>
CSS:
  1. <style scoped>    .music-title{        color: #040404;        background-image: -webkit-linear-gradient(left,        #FEFDFC,        #070707 25%,        #070707 50%,        #070707 75%,        #070707 100%);        -webkit-text-fill-color: transparent;        -webkit-background-clip: text;        -webkit-background-size: 150% 100%;        -webkit-animation: masked-animation 5s infinite linear;    }     @-webkit-keyframes masked-animation {        0% {            background-position: 0 0;        }        100% {            background-position: -100% 0;        }    }</style>