IanLunn / Hover

A collection of CSS3 powered hover effects to be applied to links, buttons, logos, SVG, featured images and so on. Easily apply to your own elements, modify or just use for inspiration. Available in CSS, Sass, and LESS.
http://ianlunn.github.io/Hover/
Other
29.25k stars 5.78k forks source link

disappear and show up issue on internet explorer #97

Closed tmrdurgun closed 8 years ago

tmrdurgun commented 8 years ago

When hover, element first disappear for 1 sec and then animating :/

ylashin commented 8 years ago

Seems like transform : ScaleZ(0) which comes from hvr-grow causes this issue. I added the below to my app stylesheet and it works fine now

.hvr-grow {  
 -webkit-transform: none;
  transform: none;  
}
IanLunn commented 8 years ago

See https://github.com/IanLunn/Hover/issues/71