JS写的一个图片轮换特效,每次一张,带左右箭头按钮。

 我来答
图材图色tusea
2011-08-28 · 用心创作内容,感谢您的关注
图材图色tusea
采纳数:318 获赞数:1880

向TA提问 私信TA
展开全部
<script>

var picarr=new Array("1.jpg","2.jpg","3.jpg");

var mypoint=-1;

function changepic(myflag)

{

if(myflag<0)

{

mypoint=mypoint-1;

if (mypoint<0) { mypoint=picarr.length-1;}

}

else

{

mypoint=mypoint+1;

if (mypoint==picarr.length) { mypoint=0;}

}

document.getElementById("pic").src=picarr[mypoint];

}

</script>

<body style="text-align:center;" onload="changepic(0);">

<div style="width:810px;background-color:#eee">

<span onclick="changepic(-1);" onmousemove="this.style.color='red';" onmouseout="this.style.color='blue';" style="cursor: hand">《-LastOne </span>

<img id=pic border="0" width=600 style="text-align:center;vertical-align:middle;"/>

<span onclick="changepic(0);" style="cursor: hand;" onmousemove="this.style.color='red';" onmouseout="this.style.color='blue';" > NextOne-》</span>

</div>

<body>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式