快速业务通道

Javascript初学者实例教程(10):图像属性

作者 佚名技术 来源 网页制作 浏览 发布时间 2012-03-07

上一篇JS教程学习了:JS初学者实例教程(9):下拉菜单和链接属性

实例十

本实例主要介绍了图像属性的使用,模拟百度图片显示

 <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>图像编程</title>
<script language="javascript">
var imageArray = new Array("http://www.webjx.com/files/080604/1_1S300O6.jpg","http://www.webjx.com/files/080609/1_1646295a.jpg","http://www.webjx.com/files/080607/1_11025E49.jpg"," http://www.webjx.com/files/080526/1_14563MW.jpg","http://www.webjx.com/files/080508/1_1639392S.jpg","http://www.webjx.com/upfiles/20070128/290-218.jpg");
var index = 0;
function GetNext()
{
 index++;
 if(index < imageArray.length)  //判断图像的下标是否小于数组的长度
 {
  document.images["saint"].src=imageArray[index]; //如果小于,那么就显示该下标所指定的图像
 }
 else
 {
  index = 0;
  document.images["saint"].src=imageArray[index]; //如果不小于,那么就显示第一幅图像,并把index值置为0 
 }
}
function GetPrev()
{
 index--;
 if(index >= 0) //判断图像的下标是否大于0
 {
  document.images["saint"].src=imageArray[index]; //如果大于,那么就显示该下标所指定的图像
 }
 else
 {
  index = imageArray.length-1;
  document.images["saint"].src=imageArray[index];  //如果不大于,那么就显示最后一幅图像,并把index值置为数组长度减1 
 }
}
</script>
</head>
<body>
<img name="saint" src="http://www.webjx.com/files/080604/1_1S300O6.jpg" width="400" height="300">
<br>
<a href="javascript:GetNext()">下一幅</a>
<a href="javascript:GetPrev()">上一幅</a>
</body>
</html>

效果演示:

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号