This article shares the specific code of Vue to implement the second kill countdown component for your reference. The specific content is as follows Below is the countdown component for the second kill using Vue Development ideas 1. Request the server to obtain the server time at this moment (based on the server time) Code ImplementationThe following code only shows steps 4 and 5. Component CountDown.vue <template> <div> <input type="datetime-local" :min="currentTime" placeholder="Please enter the start time of the flash sale" v-model="startTime"> <button @click="submit">Start timing</button> </div> <div> <h1>{{ countDownTime }}</h1> </div> </template> <script> let timer = null; let tipTextPrefix = 'Time left until the flash sale starts: '; import moment from "moment"; export default { name: 'CountDown', data() { return { currentTime: moment().format('YYYY-MM-DDTHH:mm'), // Please use the server time calculated in steps 1-3 startTime: moment().format('YYYY-MM-DDTHH:mm'), countDownTime: tipTextPrefix + '0 days 0 hours 0 minutes 0 seconds' }}, methods: { submit: function() { const _this = this; clearInterval(timer); timer = setInterval(() => { _this.countDownTime = _this.countDown(); }, 1000); }, countDown: function() { console.log(this.startTime); const seconds = moment(this.startTime).diff(new Date, 'seconds'); if (seconds <= 0) { clearInterval(timer); return 'Second sale has started'; } const second = seconds%60; const minutes = (seconds-second) / 60; const minute = minutes%60; const hours = (minutes-minute) / 60; const hour = hours%24; const day = (hours-hour) / 24; const res = tipTextPrefix + day + 'day' + hour + 'hour' + minute + 'minute' + second + 'second'; return res; } }, } </script> <style> </style> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Solution to the problem of flash back after entering the password in MySQL database
This article uses the deep learning framework ker...
Table of contents Overview Functionality and read...
What is a covering index? Creating an index that ...
Table of contents 1. Variables Use meaningful nam...
When writing HTML code, the first line should be ...
This article mainly introduces how to use the Rea...
<br />Related articles: innerHTML HTML DOM i...
This article shares the specific code of NodeJS t...
1. Background When the Docker service is started,...
Recently, many students have asked me about web p...
Routing configuration commands under Linux 1. Add...
There are few and inadequate installation tutoria...
Table of contents 1. MySQL data backup 1.1, mysql...
In order to save installation time, I used the of...