Hi All, finally have rotating images working, I found a very simple example and it worked. Anyway, is there anyway to add a transitioning affect to it somehow? I like how it works, but it just all seems too abrupt
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="javascript" type="text/javascript">
img2 = new Image()
seconds = "2";
function imgOne()
{
setTimeout("imgTwo()", seconds * 1000);
}
function imgTwo()
{
document.myimg.src = 'two.gif';
setTimeout("imgThree()", seconds * 1000);
}
function imgThree()
{
document.myimg.src = 'three.gif';
setTimeout("imgOne()", seconds * 1000);
}
</script>
</head>
<body onload="imgOne();">
<img src="one.gif" name="myimg">
</body>
</html>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="javascript" type="text/javascript">
img2 = new Image()
seconds = "2";
function imgOne()
{
setTimeout("imgTwo()", seconds * 1000);
}
function imgTwo()
{
document.myimg.src = 'two.gif';
setTimeout("imgThree()", seconds * 1000);
}
function imgThree()
{
document.myimg.src = 'three.gif';
setTimeout("imgOne()", seconds * 1000);
}
</script>
</head>
<body onload="imgOne();">
<img src="one.gif" name="myimg">
</body>
</html>