为了账号安全,请及时绑定邮箱和手机立即绑定

请问该如何用window.onload=function()写上一个定时器?

请问该如何用window.onload=function()写上一个定时器?

LEATH 2022-04-07 17:13:50
我已经做好了HTML页面如下:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title><style type="text/css">#tab { overflow:hidden; width:400px; height:250px; position:relative; float:left;}</style></head><body><div id="tab"><img src="img/01.jpg" width="400" height="250"/><img src="img/02.jpg" width="400" height="250"/><img src="img/03.jpg" width="400" height="250"/></div><script></script></body></html>如何用window.onload=function(){写上一个定时器},具体用JS怎么写...谢谢
查看完整描述

1 回答

?
叮当猫咪

TA贡献1776条经验 获得超12个赞

<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title><style type="text/css">#tab { overflow:hidden; width:400px; height:250px; position:relative; float:left;}#tab>img:not(:first-child){ display:none; } </style><script>    window.onload = function(){             var images = document.getElementsByTagName('img');        var pos = 0;        var len = images.length;                 setInterval(function(){                     images[pos].style.display = 'none';            pos = ++pos == len ? 0 : pos;            images[pos].style.display = 'inline';                 },1000);             };</script> </head> <body><div id="tab">    <img src="img/01.jpg" width="400" height="250"/>    <img src="img/02.jpg" width="400" height="250"/>    <img src="img/03.jpg" width="400" height="250"/></div></body></html>



查看完整回答
反对 回复 2022-04-11
  • 1 回答
  • 0 关注
  • 233 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信