Dynamic-Carousel
Dynamic-Carousel copied to clipboard
No animation in IE in absolutely positioned container
I tested in a Virtual Machine on my Mac, in IE8 and IE9.
I can confirm this issue as well, I am hoping to use it on a government site, so I need to have this working in IE7, 8, 9!
From what I've found, this is due to the function transitionSupport to return true in all case.
A simple workaround (as I don't have much time to dig this further) would be to use Modernizr and change your function "transitionSupport" with this:
transitionSupport = function() { return Modernizr.csstransitions; }
(By the way, transitionSupport is declared twice, so you'll have to change both)
I'll try to pull a request with a standalone solution soon.
I tested the current version in IE6, IE7, IE8, IE9 on WinXP and win7 and it works in both IE6 and IE7, but not in IE8 or IE9.
The demo at http://matmarquis.com/carousel/ works in every IE version, so I guess it's using different/older version of the plugin than the current one on Github?
After some more investigation it appears that @SBoudrias has fixed the problem with IE versions 8 and 9 with this pull request: https://github.com/Wilto/Dynamic-Carousel/pull/52