昨天还是前天发了一个marquee标签无缝滚动 但是这个优缺点那就在下面不好加文字进行一个滚动 然后老板果然不满意 需要一个文字在图片下面 所以就有了今天这个
其实这个有很多各种叫法什么 图片滚动 js自动轮播 图片轮播 图片自动轮播 什么什么的好多个叫法 所以看文字名字这个叫法不错吧!
废话不多说:(有点不好看 原谅我审美比较差)
<!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> <title>zklhy</title> <style type="text/css"> <!-- #S_LIST{ PADDING-RIGHT: 0px; PADDING-LEFT: 0px; LIST-STYLE-POSITION: outside; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px; LIST-STYLE-TYPE: none; overflow: hidden; } #S_LIST LI { width:755px; height:auto; float:left; padding: 0px; margin: 0px; list-style-image: none; list-style-type: none; } #S_LIST A { DISPLAY: block; MARGIN: 0px; WIDTH: 755px; HEIGHT: auto; TEXT-ALIGN: center; padding-top: 3px; padding-right: 0px; padding-bottom: 3px; padding-left: 0px; } #demo { background: #FFF; overflow:hidden; border: 1px dashed #CCC; width: 100%; height:240px; } #demo img { border: 1px solid #F2F2F2; } #indemo { float: left; width: 800%; } #demo1 { float: left; } #demo2 { float: left; } --> </style> </head> <body> <div id="demo"> <div id="indemo"> <div id="demo1"> <ul id="S_LIST"> <li><a href="http://zklhy.com"><img src="http://www.zklhy.com/wp-content/uploads/2016/04/68.jpg" width="750" height="210" border="0" /></a> <a href="http://zklhy.com" >特色</a></li> <li><a href="http://zklhy.com"><img src="http://www.zklhy.com/wp-content/uploads/2016/04/67.jpg" width="750" height="210" border="0" /></a> <a href="http://zklhy.com" >特色</a></li> <li><a href="http://zklhy.com"><img src="http://www.zklhy.com/wp-content/uploads/2016/04/66.jpg" width="750" height="210" border="0" /></a> <a href="http://zklhy.com" >特色</a></li> <li><a href="http://zklhy.com"><img src="http://www.zklhy.com/wp-content/uploads/2016/04/65.jpg" width="750" height="210" border="0" /></a> <a href="http://zklhy.com" >特色</a></li> <li><a href="http://zklhy.com"><img src="http://www.zklhy.com/wp-content/uploads/2016/04/64.jpg" width="750" height="210" border="0" /></a> <a href="http://zklhy.com" >特色</a></li> <li><a href="http://zklhy.com"><img src="http://www.zklhy.com/wp-content/uploads/2016/04/68.jpg" width="750" height="210" border="0" /></a> <a href="http://zklhy.com" >特色</a></li> <li><a href="http://zklhy.com"><img src="http://www.zklhy.com/wp-content/uploads/2016/04/63.jpg" width="750" height="210" border="0" /></a> <a href="http://zklhy.com" >特色</a></li> <li><a href="http://zklhy.com"><img src="http://www.zklhy.com/wp-content/uploads/2016/04/64.jpg" width="750" height="210" border="0" /></a> <a href="http://zklhy.com" >特色</a></li> <li><a href="http://zklhy.com"><img src="http://www.zklhy.com/wp-content/uploads/2016/04/62.jpg" width="750" height="210" border="0" /></a> <a href="http://zklhy.com" >特色</a></li> <li><a href="http://zklhy.com"><img src="http://www.zklhy.com/wp-content/uploads/2016/04/60.jpg" width="750" height="210" border="0" /></a> <a href="http://zklhy.com" >特色</a></li> </ul> </div> <div id="demo2"></div> </div> </div> <script> <!-- var speed=10; var tab=document.getElementById("demo"); var tab1=document.getElementById("demo1"); var tab2=document.getElementById("demo2"); tab2.innerHTML=tab1.innerHTML; function Marquee(){ if(tab2.offsetWidth-tab.scrollLeft<=0) tab.scrollLeft-=tab1.offsetWidth else{ tab.scrollLeft++; } } var MyMar=setInterval(Marquee,speed); tab.onmouseover=function() {clearInterval(MyMar)}; tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)}; --> </script> </body> </html>