Wilto / Dynamic-Carousel

A carousel plugin built for responsive layouts. There are many like it, but this one is mine.
matmarquis.com/carousel/
472 stars 112 forks source link

No animation in IE in absolutely positioned container #50

Open fschroiff opened 12 years ago

fschroiff commented 12 years ago

I tested in a Virtual Machine on my Mac, in IE8 and IE9.

mdance commented 12 years ago

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!

SBoudrias commented 12 years ago

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.

arielsalminen commented 12 years ago

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?

arielsalminen commented 12 years ago

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