純css雪花飄落特效

html代碼:

<div class="snow"></div>

css代碼:

.snow{width:100%;height:10rem;background: url(../images/snow.png) repeat-y center;z-index: 9999999999;-webkit-animation: snow 9s linear infinite;animation: snow 9s linear infinite;}
@-webkit-keyframes snow{
0% { background-position: center 0, 0 0;}
100% { background-position: center 885px, 0 0;}
}
@keyframes snow{
0% { background-position: center 0, 0 0;}
100% { background-position: center 885px, 0 0;}
}

發佈了27 篇原創文章 · 獲贊 21 · 訪問量 14萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章