You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
Version of PIE 1.0.0
PIE.htc is in the root of our website and referenced from css as behavior: url(/PIE.htc);
It all works fine on every browser except on IE8, when you put your mouse onto the element the hover state happens with delay (the background color changes with delay).
Example of the code and css used: http://jsfiddle.net/hLY7V/
The text was updated successfully, but these errors were encountered:
The delay, unfortunately, is necessary. This is because PIE has to listen to mouseover/out events, and IE fires those events before the :hover styles from the CSS are applied to the element.
PIE does add a .pie_hover class to the elements on hover as well, which if you use that in your CSS should allow the hover styles to be applied sooner.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Version of PIE 1.0.0
PIE.htc is in the root of our website and referenced from css as behavior: url(/PIE.htc);
It all works fine on every browser except on IE8, when you put your mouse onto the element the hover state happens with delay (the background color changes with delay).
Example of the code and css used: http://jsfiddle.net/hLY7V/
The text was updated successfully, but these errors were encountered: