CSS3 rotate3D cross-browser issue -


so have fiddle: http://jsfiddle.net/aa9rm/1/ . works fine in firefox, have issues in chrome, , can't understand why. in firefox if move mouse after hover in workhover container works fine, doesn't anything, in chrome if try click or move inch, starts move (shake) , don't want that.

i use 3d rotations, css3,

-moz-transform: rotatey(-90deg);; -webkit-transform:rotatey(-90deg); transform:rotatey(-90deg); 

solutions anyone?

i think encounter same bug question : css flip transition between 2 <div>'s

it looks chrome bug div you're trying rotate rotating bit much. can fix jsfiddle on chrome changing css (see webkit degree) :

.cube:hover{     -moz-transform: rotatey(-90deg);     -webkit-transform:rotatey(-89.9deg);     transform:rotatey(-90deg); } 

it's quite hacky never found clean solution. can use pointer-events: none; property in way make works.


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -