Problem With JQuery Cycle On IE8
I have a problem with IE8 displaying a black background during the transition of the food images on IE8, mid-way through this page http://bit.ly/mDcm2v Another more minor problem i
Solution 1:
This is because IE8 can only apply 1 style effect on an element at once.
Since the images are transparent PNG, you are already using that effect and you can't apply an opacity as well. When it fades, you disable the transparency and add opacity.
You can use one of these hacks to fix it: How to solve/hack fading semi-transparent PNG bug in IE8?
Solution 2:
To Solve PNG Background-image
transparent
issue Please check this :
Solution 3:
Try this:
cleartypeNoBg:true
for more information on this solution:
http://www.leveltendesign.com/blog/dustin-currie/show-background-image-jquery-cycle-ie
Post a Comment for "Problem With JQuery Cycle On IE8"