That script is basically obsolete due IE's abandoning support of the proprietary filters that it uses. This is perhaps the closest replacement:
http://dev7studios.com/nivo-slider/
It can be configured to pixelate for all transitions, but it also has many other available transitions which can be used, either alone or alternating among two or more within a single slideshow.
There's also:
http://jquery.malsup.com/cycle/
which has no pixelating option, but that does provide several transition options.
And for a fade only transition slideshow that's relatively easy to use, there's (both from DD):
http://www.dynamicdrive.com/dynamici...army/index.htm
and:
http://www.dynamicdrive.com/dynamici...nslideshow.htm
However, if you want to use the Pixelating Slideshow Script and have it act like a simple slideshow (no transitions) when those are not supported, it can be modified. Just change:
Code:
var ie55=window.createPopup
to:
Code:
var ie55=/MSIE (\d+)/.exec(navigator.userAgent)
ie55 = ie55 && ie55[1] < 10
Bookmarks