vue實現(xiàn)簡單跑馬燈效果
本文實例為大家分享了vue實現(xiàn)簡單跑馬燈效果的具體代碼,供大家參考,具體內(nèi)容如下
如下圖片,會自行向 上“滾動”
代碼:
<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title>跑馬燈 </title> <script src='https://cdn.bootcss.com/vue/2.5.17-beta.0/vue.min.js'></script> <style> div, ul, li, img { margin: 0; padding: 0; box-sizing: border-box; display: flex; } .horseLamp { width: 100%; height: 50px; align-items: center; background-color: #ddd; display: flex; box-sizing: border-box; } .horseLamp_box { display: block; position: relative; width: 60%; height: 30px; overflow: hidden; } .horseLamp_list { display: block; position: absolute; top: 0; left: 0; } .horseLamp_top { transition: all 0.2s; margin-top: -30px } .horseLamp_list li { height: 30px; line-height: 30px; font-size: 14px; } </style> </head><body> <div class='vueBox'> <div class='horseLamp'> <div class='horseLamp_box'> <ul :class='{horseLamp_top:animate}'> <li v-for='(item, index) in horseLampList'> <img :src='http://www.intensediesel.com/bcjs/item.img'> </li> </ul> </div> </div></div> <script type='text/javascript'> const vm = new Vue ({ el: '.vueBox', data: { animate: false, horseLampList: [ { img:’../assets/logo.png’ }, { img:’../assets/logo.png’ }, { img:’../assets/logo.png’ }, { img:’../assets/logo.png’ } ] }, created: function () { setInterval (this.showhorseLamp, 600) }, methods: { showhorseLamp: function () { this.animate = true; setTimeout (() => { this.horseLampList.push (this.horseLampList[ 0 ]); this.horseLampList.shift (); this.animate = false; }, 2000); } } });</script> </body></html>
更多文章可以點擊《Vue.js前端組件學(xué)習(xí)教程》學(xué)習(xí)閱讀。
關(guān)于vue.js組件的教程,請大家點擊專題vue.js組件學(xué)習(xí)教程進(jìn)行學(xué)習(xí)。
更多vue學(xué)習(xí)教程請閱讀專題《vue實戰(zhàn)教程》
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. jsp+servlet實現(xiàn)猜數(shù)字游戲2. JSP+Servlet實現(xiàn)文件上傳到服務(wù)器功能3. CSS可以做的幾個令你嘆為觀止的實例分享4. 將properties文件的配置設(shè)置為整個Web應(yīng)用的全局變量實現(xiàn)方法5. 低版本IE正常運行HTML5+CSS3網(wǎng)站的3種解決方案6. JSP之表單提交get和post的區(qū)別詳解及實例7. UDDI FAQs8. Xml簡介_動力節(jié)點Java學(xué)院整理9. jsp文件下載功能實現(xiàn)代碼10. ASP常用日期格式化函數(shù) FormatDate()
