Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edge / IE problems #23

Open
purepear opened this issue Jun 11, 2017 · 2 comments
Open

Edge / IE problems #23

purepear opened this issue Jun 11, 2017 · 2 comments

Comments

@purepear
Copy link

Thank you for this lovely lib :)
I was surprised there's no issue raised and no support details about Edge / IE
In Edge it's just unusable. It's stuttering and freezing and blinking... i tested it on different windows machines and the effect is the same. Testing on the demos

https://micku7zu.github.io/vanilla-tilt.js/
http://gijsroge.github.io/tilt.js/

i'm not sure how to link an issue to both projects so i'll put a link to this issue in https://github.com/gijsroge/tilt.js/issues

@gijsroge @micku7zu

@johndatserakis
Copy link

johndatserakis commented Jun 19, 2017

Yes - I am finding the same issues in Edge/IE - stuttering, blinking, freezing.

Really appreciate the work done on this library - especially that it's done in entirely in js - would be nice to find and solve the pain-point causing the issues there.

@AaronLavers
Copy link

AaronLavers commented Jan 25, 2019

So if anyone else lands here wondering how to solve the nonsense issues that IE/Edge causes when using this plugin, this is my solution: Disable the css transform effect for IE/Edge.

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
[data-tilt] {
-webkit-transform: none !important;
transform: none !important;
}
}

@supports (-ms-ime-align:auto){
[data-tilt] {
-webkit-transform: none !important;
transform: none !important;
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants