html文字扫光特效
HTML内:CSS:
- <div class="music-title">你的文字内容</div>
- <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>