このタグ教えて下さい
このタグを使うと画像がスライドするように3秒ごとに画像が変わって行くらしいのですが、私も使ってみたいです。
ですが何処に自分の作った画像を入れたらよいのか解りません?
画像サイズは、横485 縦162 枚数は4枚入れてみたいです。
どうぞ宜しくお願いします。
<style type="text/css">
#photo1{
position:absolute;
top:16px;
left:-256px;
z-index:1;
}
#photo2{
position:absolute;
top:16px;
left:16px;
}
</style>
<script type="text/javascript">
window.onload =function(){
photo1Img=document.getElementById("photo1");
photo2Img=document.getElementById("photo2");
album.swapImage();
}
var album = {
imageURL : [
"a.gif",
"b.gif",
"c.gif",
],
swapImage : function(){
this.count++;
if (this.count >= 3) this.count = 0;this.count2 = 0;
photo1Img.style.left="";
photo1Img.src = this.imageURL[this.count];
setTimeout("album.counter()", 100);
},
counter:function(){
this.count2++;
photo1Img.style.left=(this.count2*16-256)+"px";
if(this.count2 > 16){
setTimeout("album.swapImage()", 3*1000);
photo2Img.src = this.imageURL[this.count];
} else setTimeout("album.counter()", 30);
},
count : 0,count2 : 0
};
</script>
<p>
<img src="a.gif" id="photo1" width="256" height="64">
<img src="a.gif" id="photo2" width="256" height="64">
</p>