Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
/***********************************************
* Flexi Slideshow- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
var variableslide=new Array();
//variableslide[x]=["path to image", "OPTIONAL link for image", "OPTIONAL text description (supports HTML tags)"]
variableslide[0]=['http://www.vicsjavascripts.org.uk/StdImages/One.gif', ' ', ' '];
variableslide[1]=['http://www.vicsjavascripts.org.uk/StdImages/Two.gif', ' ', ' '];
variableslide[2]=['http://www.vicsjavascripts.org.uk/StdImages/Three.gif', ' ', ' '];
//configure the below 3 variables to set the dimension/background color of the slideshow
var slidewidth='556px'; //set to width of LARGEST image in your slideshow
var slideheight='277x'; //set to height of LARGEST iamge in your slideshow, plus any text description
//configure the below variable to determine the delay between image rotations (in miliseconds)
var slidedelay=1000;
var slidebgcolor='red';
var to;
////Do not edit pass this line////////////////
var srcary=[];
for (i=0;i<variableslide.length;i++){
srcary[i]=new Image();
srcary[i].src=variableslide[i][0];
}
var currentslide=0
function rotateimages(){
contentcontainer='<center>';
if (variableslide[currentslide][1]!=""){
contentcontainer+='<a href="'+variableslide[currentslide][1]+'">';
}
contentcontainer+='<img src="'+variableslide[currentslide][0]+'" border="0" vspace="3">';
if (variableslide[currentslide][1]!=""){
contentcontainer+='</a>';
}
contentcontainer+='</center>';
if (variableslide[currentslide][2]!=""){
contentcontainer+=variableslide[currentslide][2];
}
crossrotateobj.innerHTML=contentcontainer;
if (currentslide==variableslide.length-1){
currentslide=0;
}
else {
currentslide++;
}
to=setTimeout("rotateimages()",slidedelay);
}
document.write('<div id="slidedom" style="width:'+slidewidth+';height:'+slideheight+'; background-color:'+slidebgcolor+'"></div>')
function start_slider(){
crossrotateobj=document.getElementById("slidedom");
crossrotateobj.onmouseover=function(){
clearTimeout(to);
}
crossrotateobj.onmouseout=function(){
to=setTimeout("rotateimages()",500);
}
rotateimages();
}
start_slider()
</script>
</body>
</html>
Bookmarks