Hepp-Kondas said:
I am trying to develop my first website using FrontPage 2003. I
would like to have one cell of a table that shows a group ofimages,
one after the other, in a continuousloop, with about 2 seconds for
each photo. The photo/image group will include ten logos or image of
our top ten donors. What is this called? Is this possible in
FrontPage? Do I need to buy a template? If so, which would you
recommend?
Thanks so much in advance!
I recntly posted as script that does this.
Here is my copy - well, it is the code as installed by the person I posted
it for
Just alter theimagesin var slideimages1=new Array(.............)
<head>
<script type="text/javascript" >
<!--
//specify interval between slide (in milli seconds)
var slidespeed=3000
//specifyimages
var slideimages1=new
Array("kitchen_camerist3_resized.jpg","bath_casa_resized.jpg","1-2kitchen1_rfesized.jpg","1-3Bamboo_resized.jpg",
"bath_felicity_resized.jpg","kitchen_felicity_resized.jpg")
var imageholder1=new Array()
for (i=0;i<slideimages1.length;i++)
{ imageholder1
=new Image()
imageholder1.src=slideimages1 }
var whichimage1=0
function slideit()
{
if (!document.images) return
if (document.all)
{ document.images.slide1.filters[0].apply() }
document.images.slide1.src=imageholder1[whichimage1].src
if (document.all)
{ document.images.slide1.filters[0].play() }
whichimage1=(whichimage1<slideimages1.length-1)? whichimage1+1 : 0
var blenddelay1=(document.all) ?
document.images.slide1.filters[0].duration*1000 : 0
setTimeout("slideit()",slidespeed+blenddelay1)}
//-->
</script>
</head>
<body onload="slideit()">
<img src="" name="slide1" border=0 style="filter:blendTrans(duration=3)" >
</body>
</html>
--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website:http://trevorl.mvps.org/
----------------------------------------