Osel Miko Dřevorubec
Osel Miko Dřevorubec

Reputation: 182

Css Transform IE

Hello is here a way how to make this work in IE ?? http://www.victorgallo.cz/Cube/index.html

I searching about IE transformation but it seems like its not supported.. is here any different way or something ? in other browsers:Firefox , Chrome , Opera it work.. I hate IE !

  #cubeSpinner .two {
-webkit-transform: rotateY(90deg) translateZ(300px);
-moz-transform: rotateY(90deg) translateZ(300px);
-o-transform: rotateY(90deg) translateZ(300px);
transform: rotateY(90deg) translateZ(300px);
background-image: url(images/main.jpg);

Upvotes: 1

Views: 1686

Answers (2)

i_like_robots
i_like_robots

Reputation: 2787

CSS transforms are supported in IE9 (with -ms- prefix) and IE10 unprefixed. http://caniuse.com/#feat=transforms2d

Upvotes: 1

Forrestoned
Forrestoned

Reputation: 19

css3 is not supported throug ie except IE10. You can try using jQuery.animate() jQuery Documentation

Upvotes: 0

Related Questions