1) Script Title: Ultimate Fade In Slideshow 1.5
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...nslideshow.htm
3) Describe problem: The script doesn't do the fade in Opera 9. This will be a problem for any browser that uses the w3c opacity instead of the proprietary opacity filters/styles.
Here is the fix:
changeto:PHP Code:else if (obj.tempobj.style.MozOpacity)
obj.tempobj.style.MozOpacity=obj.degree/101
else if (obj.tempobj.style.KhtmlOpacity)
obj.tempobj.style.KhtmlOpacity=obj.degree/100
And change:PHP Code:else if(typeof obj.tempobj.style.opacity)
obj.tempobj.style.opacity=obj.degree/101
else if (obj.tempobj.style.MozOpacity)
obj.tempobj.style.MozOpacity=obj.degree/101
else if (obj.tempobj.style.KhtmlOpacity)
obj.tempobj.style.KhtmlOpacity=obj.degree/100
to:PHP Code:else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=obj.degree/100
PHP Code:else if(typeof crossobj.style.opacity)
crossobj.style.opacity=this.degree/101
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=this.degree/100



Reply With Quote


Bookmarks