码迷,mamicode.com
首页 > 其他好文 > 详细

轮播图

时间:2019-07-07 14:20:48      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:function   inter   interval   doctype   xmlns   document   set   int   script   

<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/html"> <head>     <meta charset="UTF-8">     <title>Title</title>     <script>
var num = 1 ; function change() { num++; if(num > 3) { num =1; } var p1 = document.getElementById("p1"); p1.src=""+num+".jpg"; } setInterval(change,2000)
</script> </head> <body> <img src="1.jpg" id="p1">
</body> </html>

轮播图

标签:function   inter   interval   doctype   xmlns   document   set   int   script   

原文地址:https://www.cnblogs.com/xinglingzhiren/p/11146102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!