I'm working on a project that uses the new CSS3 transform:rotate(180deg)
feature. Every modern browser has it's own tag, but does support it. Only IE (of course) doesn't. But with using filters the same thing can be achieved. The only problem with that is, is that IE uses another origin as CSS3 does. My guess is that with some math the origin can be made centered, but I just don't get it (my math isn't what it used to be).
The code and the example can be found here: http://jsbin.com/adiwa3/2.
Adding /edit
behind the url (http://jsbin.com/adiwa3/2/edit) should open the editor for your testing.
Check it in IE to see the problem and in another modern browser to see the needed result.
The part that currently fixes (wrongly) the problem is between the if(i==#){...}
which should be changed into some math, as the number of li
's can change.
I hope someone can help me with this. Thnx you.