首页 > 代码库 > 图片轮播
图片轮播
head里
<style> *{ margin:50px auto;} #tuijian{ width:760px; height:350px; background-repeat:no-repeat; background-position:center center;} .pages{ top:200px; background-color:black; opacity:0.5; width:30px; height:60px;} #p1{ float:left; margin-left:10px; margin-top:150px;} #p2{ float:right; margin-right:10px; margin-top:150px;} </style>
body里
<div id="tuijian" style="background-image:url(1.jpg);"> <div class="pages" id="p1" onclick="dod(-1)"></div> <div class="pages" id="p2" onclick="dod(1)"></div> </div>
html外
<script> var jpg=new Array(); jpg[0]="url(1.jpg)"; jpg[1]="url(2.jpg)"; jpg[2]="url(3.jpg)"; var tjimg=document.getElementById("tuijian"); var xb=0; var n=0; function huan() { xb++; if(xb==jpg.length) { xb=0; } tjimg.style.backgroundImage=jpg[xb]; if(n==0) { window.setTimeout("huan()",3000); } } window.setTimeout("huan()",3000); function dod(m) { xb=xb+m; if(xb<0) { xb=jpg.length-1; } else if(xb>=jpg.length) { xb=0; } tjimg.style.backgroundImage=jpg[xb]; } </script>
图片轮播
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。