从右到左不间断滚动DIV CSS特效

2010-09-18 00:57:34 从右往左的横向不间断滚动DIV CSS代码(图例)图片或文字不停不间断从左向右滚动DIV+CSS+JS代码- css5。

不间断从左往右横向滚动的DIV CSS代码

横排图片不间断从右往左无缝滚动

并排横排的图片列表不间断横向滚动效果演示(图)

完整DIV+CSS+JS不间断横向滚动代码:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>横向不间断滚动DIV CSS代码-HTML8</title>
</head>
<body>
<style>
.scroll_div {width:600px; height:51px;margin:0 auto; overflow: hidden; white-space: nowrap; background:#ffffff;}
.scroll_div img {width:175px;height:51px;border: 0;margin: auto 8px; }
#scroll_begin, #scroll_end, #scroll_begin ul, #scroll_end ul,
#scroll_begin ul li, #scroll_end ul li{display:inline;}/* 设置ul和li横排 */
</style>
<script language="javascript">
function ScrollImgLeft(){
var speed=20
var scroll_begin = document.getElementById("scroll_begin");
var scroll_end = document.getElementById("scroll_end");
var scroll_div = document.getElementById("scroll_div");
scroll_end.innerHTML=scroll_begin.innerHTML
function Marquee(){
if(scroll_end.offsetWidth-scroll_div.scrollLeft<=0)
scroll_div.scrollLeft-=scroll_begin.offsetWidth
else
scroll_div.scrollLeft++
}
var MyMar=setInterval(Marquee,speed)
scroll_div.onmouseover=function() {clearInterval(MyMar)}
scroll_div.onmouseout=function() {MyMar=setInterval(Marquee,speed)}
}
</script>
<h2 align="center"><a href="//www.html8.com.cn/">HTML8</a>演示说明:向左滚动</h2>
<div style="text-align:center">
<div class="sqBorder">
<!--#####滚动区域#####-->
<div id="scroll_div" class="scroll_div">
<div id="scroll_begin">
<ul>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" width="175" height="51" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" alt="div css" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" alt="divcss" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" alt="CSS" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" alt="HTML8" /></a></li>
<li><a href="//www.html8.com.cn/"><img src="//www.html8.com.cn/img/css-logo.gif" /></a></li>
</ul>
</div>
<div id="scroll_end"></div>
</div>
<!--#####滚动区域#####-->
</div>
<script type="text/javascript">ScrollImgLeft();</script>
</div>
<!--//向左滚动代码结束-->
</body>
</html>

感谢好友分享HTML8快乐学习!

更新