1. 程式人生 > 程式設計 >vue.js實現簡單計時器功能

vue.js實現簡單計時器功能

本文例項為大家分享了.實現簡單計時器功能的具體程式碼,供大家參考,具體內容如下

<!DOCTYPE html>
<html lang="en">
<head>
  <title>抬腿計數器</title>
  <script src="/static/vue/vue.js"></script>
  <script src="/static/vue/index.js"></script>
  <script src="/static/vue/vue-resource.min.js"></script>
  <link rel="stylesheet" href="/static/vue/index." >
</head>
<style type="text/css">
  .el-container {
    margin:100px 30px 30px 30px ;
    height:1800px;
    background-color: #B3C0D1;
  }
  .el-button{
    height:1800px;
    width:100%;
    font-size:300px;
  }
</style>
<body>
  <div id="app">
    <el-container>
      <el-buttwww.cppcns.com
on type="primary" :disabled="!canclick" @click="add"> {{ num }} <el-divider></el-divider> {{ content }} </el-button> </el-container> <video ref="notify"> <source src="countdown.m4a" /> </video> </div> <script> new Vue({ el: '#app',data: function () { return { num:0,canclick:true,content:"計數器",count:10 } },mounted(){ this.getnum() //獲取所有選擇項 },methods:{ www.cppcns.com
getnum:function(){ this.$http.get('/api/count/count.').then(function(res){ this.num=res.data },function(){ console.log('請求失敗處理') }); },add:function(){ this.canclick=false this.$refs.notify.play() this.content=this.count+'s後結束' let clock=setInterval(()=>{ this.count-- this.content=this.count+'s後結束' if(this.count==0){ this.content="計數器" clearInterval(clock) this.canclick=true this.count=10 } },850); this.$http.get('/api/count/add.php?num='+this.num).then(function(res){ this.num=res.data },function(){ console.log('請求失敗處理') });http://www.cppcns.com
} } }) </script> </body> </html>

效果如下

vue.js實現簡單計時器功能

vue.js實現簡單計時器功能

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。