Well, you can speed things up in FF by making a few changes to the script. In the function fadepic(obj), change this line:
to:
Code:
obj.degree+=document.all? 10 : 25
and this line:
Code:
obj.tempobj.style.MozOpacity=obj.degree/101
to:
Code:
obj.tempobj.style.MozOpacity=obj.degree/101<1? obj.degree/101 : 99/100
Then in the fadeshow.prototype.rotateimage=function(), change this line:
Code:
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
to:
Code:
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])", document.all? 50 : 25)
Bookmarks