I copy & pasted it into my page (in a table cell) and it looks great. I click on one of the images & it takes me to the page that I linked it to. All great... up until that point.
It is when i hit the back button on my browser to return to the homepage when all heck lets loose. The slideshow starts to wig out on me and eventually crashes my browser (and even my system one time).
I am on a Mac OS 9.2 testing in IE 5.
I also tested this in OSX and it did the same thing.
THEN I tested on a PC, and the slideshow did not appear at all. It was just white space where my image should have been.
Now I am new to DHTML in general, so I don't know how to go about fixing this. Is there extra code that I should be adding to my document to make it work? Or is this code just buggy? Or does anybody else have any tried & true code for this type of activity that I could use?
What should I do? My client really wants this drop-in slideshow image rotator.
TIA,
Estella
Here is what my code looks like. I just changed the variables that it told me to (height & width, images & links). I placed it in my default.asp (my homepage) inside of a table cell.
PHP Code:
<script language="JavaScript1.2">
//Drop-in slideshow II (hyperlinked)- By Dynamic Drive
//For full source code and more DHTML scripts, visit [url]http://www.dynamicdrive.com[/url]
//This credit MUST stay intact for use
var slideshow_width='460px' //SET SLIDESHOW WIDTH (set to largest image's width if multiple dimensions exist)
var slideshow_height='260px' //SET SLIDESHOW HEIGHT (set to largest image's height if multiple dimensions exist)
var pause=3000 //SET PAUSE BETWEEN SLIDE (2000=2 seconds)
var dropimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
function rotateimage(){
if (ie4||dom){
resetit(curcanvas)
var crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.style.zIndex++
var temp='setInterval("movepic()",50)'
dropslide=eval(temp)
curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
}
else
document.images.defaultslide.src=dropimages[curimageindex]
linkindex=curimageindex
curimageindex=(curimageindex<dropimages.length-1)? curimageindex+1 : 0
}
function rotatelink(){
window.location=droplinks[linkindex]
}
function resetit(what){
curpos=parseInt(slideshow_height)*(-1)
var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
crossobj.style.top=curpos+"px"
}
function startit(){
var crossobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.innerHTML='<a href="'+droplinks[curimageindex]+'"><img src="'+dropimages[curimageindex]+'" border=0></a>'
rotateimage()
}
if (ie4||dom)
window.onload=startit
else
setInterval("rotateimage()",pause)
Bookmarks