Vue實現跑馬燈簡單效果
阿新 • • 發佈:2021-11-01
本文例項為大家分享了實現跑馬燈簡單效果的具體程式碼,供大家參考,具體內容如下
1、跑馬燈效果
說明:單擊"應援"按鈕文字向左飄動,再單擊"暫停"按鈕停止當前飄動
2、完整程式碼 (注意:程式碼中需要引入vue.檔案,這個檔案自己根據目錄位置引入,具體位置程式碼中有註釋)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>跑馬燈</title> <!-- 引入vue.js檔案--> <script src="../vue.js"></script> <style type="text/"> #app{ padding: 20px; } </style> </head> <body> <div id="app"> <button @click="run">應援</button&http://www.cppcns.comgt; <button @click="stop">暫停</button> <h3>{{msg}}</h3> </div> <script> new Vue({ el:"#app",data:{ www.cppcns.commsg:"朋友朋友我愛你,就像老鼠愛大米~~~!",timer:null //在data上定義定時器timer,預設為null },methods:{ run(){ // 如果timer已經賦值就返回 if(this.timer){return}; this.timer = setInterval(() => { // msg分割為陣列 var arr = this.msg.split(''); // shift刪除並返回刪除的那個,push新增到最後 // 把陣列第一個元素放入到最後面 arr.push(arr.shift()); /rJSMBW/ arr.join('')吧陣列連線為字串複製給msg this.msgwww.cppcns.com = arr.join(''); },100) },stop(){ //清除定時器 clearInterval(this.timer); //清除定時器之後,需要重新將定時器置為null this.timer = null; } } }) </script> </body> </html>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。