Comment on Wristwatch in only HTML/CSSComments−bkyan14yThe exposed CSS source code seems to be missing the following:#glass #center #smallHand, #glass #center #midHand, #glass #center #bigHand { -webkit-transform-origin: 0% 50%; }It's working in your demo, so I'm guessing you simply forgot to copy it over to the exposed CSS source code? Awesome work, by the way! :)−FlamOP14yMaybe I misunderstood but isn't it right there on line 222?−bkyan14yFor line 222, I see: transform-origin: 0% 50%;I needed: -webkit-transform-origin: 0% 50%;It didn't work in my chrome browser without the "-webkit-" one.
Comments
The exposed CSS source code seems to be missing the following:
#glass #center #smallHand, #glass #center #midHand, #glass #center #bigHand { -webkit-transform-origin: 0% 50%; }
It's working in your demo, so I'm guessing you simply forgot to copy it over to the exposed CSS source code? Awesome work, by the way! :)
Maybe I misunderstood but isn't it right there on line 222?
For line 222, I see: transform-origin: 0% 50%;
I needed: -webkit-transform-origin: 0% 50%;
It didn't work in my chrome browser without the "-webkit-" one.