image slideshow |
image slideshow |
Aug 25 2004, 11:41 AM
Post
#1
|
|
|
old school member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,796 Joined: Jan 2004 Member No: 843 |
okay..now. everyone has that button slideshow. but whenever I put mine in. it won't move. it will just display the first image.
help? Here's the code with 2 random buttons from the exchange: CODE <!-- begin code provided by createblog.com -->
<script type='text/javascript'> // image slideshow by micron // for more xanga scripts and help go to createblog.com // set slideshow speed in seconds var speed = 2; // set transition duration in seconds (only for ie 5.5+) var duration = 1; // set transition effect (only for ie 5.5+) var transition = 'progid:DXImageTransform.Microsoft.RadialWipe(Duration='+duration+')'; var images = new Array(); // url to your images images[0] = 'http://img27.photobucket.com/albums/v82/jjajeeng/xjjx.gif'; images[1] = 'http://img29.photobucket.com/albums/v86/pztup/button.gif'; // do not edit anything below this line var preload = new Image(); for (var i = 0; i < images.length; i++) { preload[i] = new Image(); preload[i].src = images[i]; } document.write('<img src='+preload[0].src+' name="slideShow">'); var j = 0; function run() { if (document.all) { document.images.slideShow.style.filter=transition; document.images.slideShow.filters[0].Apply(); } document.images.slideShow.src = preload[j++].src; if (document.all) { document.images.slideShow.filters[0].Play(); } if (j == images.length) { j = 0; } setTimeout('run()', speed * 1000); } </script> <body onload='run()'> <!-- end code provided by createblog.com --> |
|
|
|
Yemmerz image slideshow Aug 25 2004, 11:41 AM
cutielilsuga huh yemi...mabye try adjust the speed of the slid... Aug 25 2004, 03:06 PM
waccoon Try changing the values around until it works. Aug 26 2004, 10:39 AM
shawty_redd hmm heres the code i use on my xanga. try it and s... Aug 26 2004, 12:41 PM![]() ![]() |