im building an analog clock using JavaScript, i know it will be alot easier if i do it with jQuery but it's not an option here.

Everything's working in Chrome and Safari(meaning the webkit browsers) but not in any of the others.

Here is my tick method, basically it rotates the image according to the time.

function tick(deg, elmt){
document.getElementById(elmt).setAttribute(
        "style", "transform:rotate(" + deg + "deg);"
      + "-moz-transform: (" + deg + "deg);"
      + "-o-transform: (" + deg + "deg);"
      + "-webkit-transform:rotate(" + deg + "deg);"
      + "filter:progid:DXImageTransform.Microsoft.BasicImage(" + deg + "deg);"
    ); 
}

any suggestion to make it work?

link|improve this question

80% accept rate
Any reason you don't use jQuery? JavaScript without jQuery is like C without its standard library. – Maxim Yegorushkin Nov 24 '11 at 8:25
@MaximYegorushkin: Javascript without the DOM API would be like C without standard library. I don't think that there is a general analogue to jQuery in C except perhaps the Arduino libraries for embedded programming in C. – slebetman Nov 24 '11 at 8:51
@slebetman: you are right, more like C++ without Boost. – Maxim Yegorushkin Nov 24 '11 at 21:59
feedback

1 Answer

up vote 2 down vote accepted

You have not used rotate for the -moz- and -o- properties, the rotation in the IE syntax

function tick(deg, elmt){
document.getElementById(elmt).setAttribute(
        "style", "transform:rotate(" + deg + "deg);"
      + "-moz-transform: rotate(" + deg + "deg);"
      + "-o-transform: rotate(" + deg + "deg);"
      + "-webkit-transform:rotate(" + deg + "deg);"
      + "-ms-transform:rotate("+ deg +"deg);"
    ); 
}

Demo at http://jsfiddle.net/gaby/fjHHX/3/


Update

Altered the code to support the IE9 -ms- extension and removed the filter one which does not allow for arbitrary rotations (only 0, 90, 180, 270 degrees)..

For support of IE versions 8 and below you can use a matrix transformation but it gets ugly.. look at section .box_rotate at http://css3please.com/
or look at the source of http://www.boogdesign.com/examples/transforms/matrix-calculator.html for how to do it

link|improve this answer
2  
IE's rotation filter does not allow arbitrary angles, only multiples of 90° msdn.microsoft.com/en-us/library/bb554293%28v=vs.85%29.aspx – Pumbaa80 Nov 24 '11 at 12:02
@Pumbaa, good point.. updated answer to reflect this.. – Gaby aka G. Petrioli Nov 24 '11 at 13:33
@GabyakaG.Petrioli it works in most browsers except IE8 and lower…it will look like this: cl.ly/CAis (screenshot) it still ticks, but all hands are "dislocated" – vinc386 Nov 29 '11 at 20:32
@vinc386 can you show your code ? perhaps a jsfiddle.. – Gaby aka G. Petrioli Nov 29 '11 at 20:45
github.com/vinc386/Analog-Clock-Scripts/blob/master/js/clock.js i commented the part, for IE 8 or earlier, out – vinc386 Nov 29 '11 at 20:48
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.