Lines Matching refs:hour
59 …te({{ hour * 30 + minute / 2 }}deg);"></image> <!--Set the hour hand image. (hour * 30) 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…
109 hour: 0, // Define hours.
119 this.hour = nowTime.getHours()
122 if (this.hour < 10) {
123 this.hour = '0' + this.hour
138 <text class="digit-clock"> {{ hour }}:{{ minute }}:{{ second }}</text>
160 style="transform : rotate({{ hour * 30 + minute / 2 }}deg);"></image>
166 <text class="digit-clock">{{ hour }}:{{ minute }}:{{ second }}</text>
217 hour: 0,
227 this.hour = nowTime.getHours()
230 if (this.hour < 10) {
231 this.hour = '0' + this.hour