Lines Matching refs:minute
59 …minute / 2 }}deg);"></image> <!--Set the hour hand image. (hour * 30) indicates that the hour hand…
61 …{ minute * 6 + second / 10 }}deg);"></image> <!--Set the minute hand image. (minute * 6) indicates…
92 …Set attributes, such as the height and width of the hour, minute, and second hands, of the clock-h…
102 …Add a timer in the **index.js** file to update the hour, minute, and second variables in real time…
110 minute: 0, // Define minutes.
120 this.minute = nowTime.getMinutes()
125 if (this.minute < 10) {
126 this.minute = '0' + this.minute
138 <text class="digit-clock"> {{ hour }}:{{ minute }}:{{ second }}</text>
160 style="transform : rotate({{ hour * 30 + minute / 2 }}deg);"></image>
162 style="transform : rotate({{ minute * 6 + second / 10 }}deg);"></image>
166 <text class="digit-clock">{{ hour }}:{{ minute }}:{{ second }}</text>
218 minute: 0,
228 this.minute = nowTime.getMinutes()
233 if (this.minute < 10) {
234 this.minute = '0' + this.minute