css3文字炫彩電音效果

偶然在Maroon 5的官網看到這樣的文字效果真的很酷就記錄下來

感興趣的話也可以自己去看飛機票

剛好在寫小程序就在小程序中模仿了下

html:

css:

.css3 {
    margin: 40px;
    font-size: 30px;
    color: #000;
    font-weight: bold;
    animation: dubstep 1.2s infinite ease;
}

@keyframes dubstep{
    0%, 100% {
        text-shadow: 0 0 0 #000;
    }
    40% {
        text-shadow: 10px 0 0 #f189d1;
    }
    43%, 45% {
        text-shadow: 10px 0 0 #f189d1, 30px 0 0 #02def2, -20px 0 0 #22ff41;
        color: #272727;
    }
    44% {
        text-shadow: 10px 0 0 #f189d1, 30px 7px 0 #02def2, -20px -5px 0 #22ff41;
        color: rgba(255,255,255,.2);
    }
}

效果:

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章