Abie Giordano
Abie Giordano

Reputation: 371

how to make certain css 3d effect works in IE

so i have this 3d transform effect, that works well in chrome, but having some problem in IE,

i've create the code sample in jsfiddle here

and some of the 3d transform code:

transform: translate3d(0px, 100%, 0px) rotateX(-90deg);
-webkit-transform: translate3d(0px, 100%, 0px) rotateX(-90deg);

the problem is, the element would rotate -90 degree but isn't showing anything when rotated (in IE), any idea on how to fix it? is it possible?

Upvotes: 0

Views: 221

Answers (1)

Shiva
Shiva

Reputation: 6885

IE Does not support:

transform-style: preserve-3d

check here

regards

Shiva

Upvotes: 1

Related Questions