私はスライドショーを持っています.....
<script type="text/javascript">
<!--
var image1=new Image()
image1.src="slide-image-1.png"
var image2=new Image()
image2.src="slide-image-2.png"
//-->
</script>
<img name="slide" class="image1" src="slide-image-1.png" />
<script>
<!--
//variable that will increment through the images
var step=1
function slideit(){
//if browser does not support the image object, exit.
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src")
if (step<2)
step++
else
step=1
//call function "slideit()" every 2.5 seconds
setTimeout("slideit()",4000)
}
slideit()
//-->
</script>
右から左に水平にスクロールすることで、スライドが互いに置き換わる方法を変更したいと考えています (これが理にかなっていることを願っています)。このタイプのトランジションは何と呼ばれますか? 単純な数行でそれを行うことができますか?
(これはおそらく経験豊富な Web デザイナーにとっては簡単なことだと思いますが、まだ始めたばかりで、これがどうなるかわかりません)