File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 6161 background : black;
6262 position : absolute;
6363 top : 50% ;
64+ transform-origin : 100% ;
65+ transform : rotate (90deg );
66+ transition : all 0.06s ;
67+ transition-timing-function : cubic-bezier (0 , 0.76 , 1 , 1.76 );
6468 }
6569
6670 </ style >
6771
6872 < script >
73+ const secondHand = document . querySelector ( '.second-hand' ) ;
74+ const minuteHand = document . querySelector ( '.min-hand' ) ;
75+ const hourHand = document . querySelector ( '.hour-hand' ) ;
76+ function setDate ( ) {
77+ const now = new Date ( ) ;
78+ const seconds = now . getSeconds ( ) ;
79+ const minutes = now . getMinutes ( ) ;
80+ const hours = now . getHours ( ) ;
81+ const minutesDegrees = ( ( minutes / 60 ) * 360 ) + 90 ;
82+ const secondsDegrees = ( ( seconds / 60 ) * 360 ) + 90 ;
83+ const hoursDegrees = ( ( hours / 12 ) * 360 ) + 90 ;
84+ secondHand . style . transform = `rotate(${ secondsDegrees } deg)` ;
85+ minuteHand . style . transform = `rotate(${ minutesDegrees } deg)` ;
86+ hourHand . style . transform = `rotate(${ hoursDegrees } deg)` ;
87+ }
88+
89+ setInterval ( setDate , 1000 ) ;
6990
7091
7192 </ script >
You can’t perform that action at this time.
0 commit comments