Dynamic-Carousel icon indicating copy to clipboard operation
Dynamic-Carousel copied to clipboard

No animation in IE in absolutely positioned container

Open fschroiff opened this issue 13 years ago • 4 comments

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

fschroiff avatar Nov 14 '11 16:11 fschroiff

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!

mdance avatar Nov 15 '11 03:11 mdance

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.

SBoudrias avatar Nov 18 '11 18:11 SBoudrias

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 avatar Nov 28 '11 14:11 arielsalminen

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

arielsalminen avatar Nov 28 '11 15:11 arielsalminen