thebird / Swipe

Swipe is the most accurate touch slider.
MIT License
6.79k stars 1.69k forks source link

Not animating properly in IE9 #206

Open thebird opened 11 years ago

thebird commented 11 years ago

From Paul via email:

I am noticing that the slideshow iterates once than stops only in IE9. Take a look at my screencast. after 3 seconds I refreshed the page, you'll see how it flickers, switches slide, then stops.

http://www.screencast.com/t/i9ITVnawk

tD3rk commented 11 years ago

Unless I'm missing something here (and I might be!) I don't think this is the correct way to handle the bug.

CSS3 transitions are not supported in ie9 and below, but are supported in an unprefixed manner in ie10. Meaning that the best way to make this work across the board is to simply remove the "msTransform" definition since that doesn't exist anyways. Doing that will allow ie7-ie9 to slide via javascript, and ie10 to slide via CSS3 transitions.

http://caniuse.com/#search=transition

atmmarketing commented 11 years ago

So the only way to get this working in IE9 is to make the entire site render incorrectly?

thebird commented 11 years ago

Ok @tD3rk, makes sense this proposed solution was not correct. Can you put together a pull request for this referencing this issue? :)