编写一个JS文件和一个网页,要求网页每5秒钟更换一张图片 30

写出所有代码所有文件能给我谢谢哪位兄弟帮忙... 写出所有代码 所有文件能给我 谢谢哪位兄弟帮忙 展开
 我来答
wangshiyi95
2010-07-19 · TA获得超过2418个赞
知道大有可为答主
回答量:1709
采纳率:0%
帮助的人:0
展开全部
===========================demo.html===========================
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>demo</title>
<script type="text/javascript" src="imageSwitcher.js"></script>
<script type="text/javascript">
window.onload = function() {
var is = new ImageSwitcher(document.getElementById("target-img"), [
"images/foo.jpg",
"images/bar.jpg"
]);
is.start(5000);
};
</script>
</head>

<body>
<img src="" id="target-img" />
</body>
</html>
=======================ImageSwiter.js========================
var ImageSwitcher = function(targetImg, images) {
this.targetImg = targetImg;
this.images = images;
if (!targetImg) {
this.targetImg = targetImg = document.createElement("img");
document.body.appendChild(targetImg);
}
};
ImageSwitcher.prototype = {
targetImg: null,
images: null,
currentImageIndex: 0,
timer: null,
start: function(interval) {
var self = this;
this.switchImage(0);
this.timer = setInterval(function(){
self.switchImage(++self.currentImageIndex);
}, interval);
},
stop: function() {
if (this.timer) {
clearInterval(this.timer);
this.timer = null;
}
},
switchImage: function(imageIndex) {
this.targetImg.src = this.images[imageIndex];
}
};
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式