Can someone please help me with my code? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Can someone please help me with my code?

I am trying to build a simple clock and I thought that my code looks good, but it does not move on my end. Help please. Thanks <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>JS + CSS Clock</title> </head> <body> <div class="clock"> <div class="clock-face"> <div class="hand hour-hand"></div> <div class="hand min-hand"></div> <div class="hand second-hand"></div> </div> </div> <style> html { background: #018ded url(http://unsplash.it/1500/1000?image=881&blur=5); background-size: cover; font-family: 'helvetica neue'; text-align: center; font-size: 10px; } body { margin: 0; font-size: 2rem; display: flex; flex: 1; min-height: 100vh; align-items: center; } .clock { width: 30rem; height: 30rem; border: 20px solid white; border-radius: 50%; margin: 50px auto; position: relative; padding: 2rem; box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1), inset 0 0 0 3px #efefef, inset 0 0 10px black, 0 0 10px rgba(0, 0, 0, 0.2); } .clock-face { position: relative; width: 100%; height: 100%; transform: translateY( -3px ); /* account for the height of the clock hands */ } .hand { width: 50%; height: 6px; background: black; position: absolute; top: 50%; transform-origin: 100%; transform: rotate(90deg); transition: all 0.05s; transition-timing-function: cubic-bezier(0.1, 2.7, 0, 1); } </style> <script> const secondHand = document.querySelector('.second-hand'); const minsHand = document.querySelector('.min-hand'); const hourHand = document.querySelector('.hour-hand'); function setdate() { const now

3rd Apr 2020, 5:52 PM
Corey
6 Answers
+ 3
Corey Write this code in Sololearn Playground and share here then we can help otherwise we can't because we don't know that what is happening there
3rd Apr 2020, 6:11 PM
A͢J
A͢J - avatar
+ 1
The code shared in your profile (to maximize the chance to get helped, you would post the link of your code: click the tree dot with two line button/icon on top right when you are in your code, and copy / paste the link in a post or better in the question description) seems working well for me: aren't the needle rotating for you? maybe your browser/device doesn't support css transform :( ... but maybe too, it could support more functionalities if you add prefixes vendor to some properties: see your styles modified in this way in next post (doesn't fit here with comment). [ edit ] doesn't fit in a post anyway ^^ I will save it in a code playground and share it here ;)
3rd Apr 2020, 7:46 PM
visph
visph - avatar
+ 1
Update your browser, or use another one, if the problem is on your computer: unlike mobile devices, wich would require a device update not longer supported, so after some age mobile devices cannot upgrade :(
3rd Apr 2020, 7:56 PM
visph
visph - avatar
0
I have shared it. Thanks
3rd Apr 2020, 6:55 PM
Corey
0
Thank you so much! Not sure why it's not working with my comp. Works fine on my phone.
3rd Apr 2020, 7:54 PM
Corey