关于DW的问题,高手进

来源:百度知道 编辑:UC知道 时间:2024/05/16 19:59:19
我在做网页,想要在网页中实现幻灯片,就如新浪体育的那种,一张一张的图变换,怎么做啊

那我只能发代码了```<img src="wtcgh_files/写路径.格式" name="photoImg" width="1002" height="340" id="photoImg" />
<SCRIPT language=JavaScript>
var PhotoImg = new Array(8);
for(var i=0; i<=8; i++) {
PhotoImg[i]= "banner/banner0" + (i+1) + ".jpg";
}
var Photo_img_index = 0;
function playPhotoImg() {
var img = document.getElementById('photoImg');
img.style.filter = "blendTrans(Duration=3)";
img.filters[0].apply();
img.src = PhotoImg[Photo_img_index];
img.filters[0].play();
if (Photo_img_index == (PhotoImg.length - 1)) {
Photo_img_index = 0;
} else {
Photo_img_index++;
}
setTimeo