让两张图片并排显示并且每张图片上都有一段文了,html代码怎么写
2个回答
2018-07-09 · 知道合伙人互联网行家
关注
展开全部
function changeSrc(nIndex){
var imageList = new Array();
imageList.push("1.jpg");
imageList.push("2.jpg");
var obj = document.getElementById("imagecontain");
obj.src = imageList[nIndex%imageList.length];
}
<div><img id="imagecontain" src="1.jpg" /></div>
<script>
var nIndex = 1;
objTimer = window.setInterval(function(){
changeSrc(nIndex);
nIndex++;
},1000);
document.getElementById("imagecontain").onmousemove = function(){
clearInterval(objTimer)
}
document.getElementById("imagecontain").onmouseout = function(){
objTimer = window.setInterval(function(){
changeSrc(nIndex);
nIndex++;
},1000);
}
</script>
</body>
var imageList = new Array();
imageList.push("1.jpg");
imageList.push("2.jpg");
var obj = document.getElementById("imagecontain");
obj.src = imageList[nIndex%imageList.length];
}
<div><img id="imagecontain" src="1.jpg" /></div>
<script>
var nIndex = 1;
objTimer = window.setInterval(function(){
changeSrc(nIndex);
nIndex++;
},1000);
document.getElementById("imagecontain").onmousemove = function(){
clearInterval(objTimer)
}
document.getElementById("imagecontain").onmouseout = function(){
objTimer = window.setInterval(function(){
changeSrc(nIndex);
nIndex++;
},1000);
}
</script>
</body>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |