I currently have one big main circle. From this big circle im doing some animation with some lines appearing from the center point of the big circle and then rotating around the big circle with soem different degress.
Im using prefixes like the following to define the transfer-origin:
transform-origin: center bottom;
-moz-transform-origin: center bottom; /* Firefox */
-ms-transform-origin: center bottom; /* IE 9 */
-webkit-transform-origin: center bottom; /* Safari and Chrome */
-o-transform-origin: center bottom; /* Opera */
This works fine in all browsers except IE8 and downwards - tried a few different things to target and fix this in IE8, but no luck. Any suggestions.
Example Fiddle of the working animation here: http://jsfiddle.net/R5CDv/21/