1.把單一內容編輯好,計算自身寬度,確定初始位置
2.移動的距離是螢幕寬度
3.js動態的加入css動畫函數,將高度、動畫移動時間、動畫延遲時間都用隨機數控制
代碼: html骨架結構(以三個為例,如果覺得介面太長不友好,也可以js動態的生成)
<div class=cute-barrage> <div class=barrage-div> <img src=http://kw1-1253445850.file.myqcloud.com/static/image/stimg_7656dc02eb1cd13adbacbbbbb26953a8. <span>一月一度的花唄還款期到啦<i>哈哈哈</i></span> </div> <div class=barrage-div> <img src=http://kw1-1253445850 .file.myqcloud.com/static/image/stimg_632fecdcb52417cb8ab89fa283e07281.jpg/> <span>坐等發薪水<i>呵呵呵</i></span> </div> <div class=barrage-div> <img src=../../static/cutePresent/resource/avatar.png /> <span>變有錢變有錢<i>耶耶耶</i></span> </div></div>css樣式
.cute-barrage是確定展示範圍和位置,寬度為100%,高度自定,橫向超出部分隱藏
.barrage-div 內容部分,長度由內容決定,決定相對父級的位置
html,body{ width:100%;}.cute-barrage{ width: 100%; height: 4rem; /*確定彈幕長度*/ position: absolute; top: 1.5rem; /*確定彈幕高度*/ left : 0; overflow-x: hidden; /*橫向超出部分隱藏*/ .barrage-div{ position: absolute; top: 0; right: -100%; /*保證一開始在界面外側,從右向左就是right,從左向右就是left*/ height: 0.6rem; background-color: rgba(255, 255 , 255, 0.9); border-radius: 2rem; white-space: nowrap; /*確保內容在一行顯示,不然移動到最後會折行*/ img{ width: 0.5rem; height: 0.5rem; vertical-align: middle; //內聯塊元素,居中對齊padding-left: 0.05rem ; border-radius: 50%; } span{ font-size: 14px; padding: 0 0.1rem; line-height: 0.6rem; //內聯塊元素,居中對齊四個缺一不可height: 0.6rem; //內聯塊元素,居中對齊四個缺一不可display: inline-block; //內聯塊元素,居中對齊四個缺一不可vertical-align: middle; //內聯塊元素,居中對齊四個缺一不可i{ color: #fe5453; font-weight: 700; } } }}js動態動畫實作(zepto.js)
//彈幕var winWidth = $(window).width(); //取得螢幕寬度$(.barrage-div).each(function(index,value){ //遍歷每條彈幕var width = $( value).width(); //取得目前彈幕的寬度var topRandom = Math.floor(Math.random() * 3) + 'rem'; //取得0,1,2的隨機數可依情況改變$(value).css({right:-width,top:topRandom}); //將彈幕移到螢幕外面,剛好超出的位置//拼出動畫影格函數,記得每個ani要區分,寬度從自己的負寬度移動一整個螢幕的距離var keyframes = `/ @keyframes ani${index}{ form{ right:${-width}px; } to{ right:${winWidth}px; } }/ @-webkit-keyframes ani${index}{ form{ right:${-width}px; } to{ right:${winWidth}px; } }`; //加入頁面的head標籤裡面$(<style>).attr(type,text/css).html(keyframes).appendTo($(head)); //定義動畫速度列表var aniList = [3,5,7,9,11]; //取數組的隨機數,0,1,2,3,4 var aniTime =Math.floor(Math.random() * 5); //給當全前彈幕添加animation的css //延遲的時間用每個的*1.5倍,這個可變$(value).css({animation:`ani${index} ${aniList[aniTime]}s linear ${index * 1.5}s`,-webkit-animation:`ani${index} ${aniList[aniTime]}s linear ${index * 1.5}s`});} )總結
以上所述是小編給大家介紹的HTML5實現行動端彈幕動畫效果,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回覆大家的。在此也非常感謝大家對VeVb武林網站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請註明出處,謝謝!