图片幻灯片效果

- 中国WEB开发者网络 (http://www.webasp.net)
-- 网页特效 (http://www.webasp.net/javascript/)
--- 图片幻灯片效果 (http://www.webasp.net/javascript/1/258.htm)
-- 发布日期: 2004-07-03
<!-- 网页特效代码由[中国WEB开发者网络:http://www.ChinaWebDev.com]提供! -->
<!-- 要实现此效果需要 1 个步骤: -->

<!-- 第 1 步: -->
<!-- 把下面的代码加到<BODY></BODY>区域中: -->

<p align="center"><img name="myPicture" src="images/webasp.net.1.jpg" width="100" height="57">

<script language="JavaScript">

<!--

var myPix = new Array("images/webasp.net.1.jpg","images/webasp.net.2.jpg","images/webasp.net.3.jpg")

var thisPic = 0



function doPrevious() {

if (document.images && thisPic > 0) {

thisPic--

document.myPicture.src=myPix[thisPic]

}

}



function doNext() {

if (document.images && thisPic < 2) {

thisPic++

document.myPicture.src=myPix[thisPic]

}

}

// -->

</script>

<br><small><font face="Verdana"><a href="javascript:doPrevious()">Previous</a> <font

color="#FFFFFF">-</font> <a href="javascript:doNext()">Next</a></font></small>


webasp.net