当前位置: 首页 > 网络学院 > 网页制作基础教程 > WEB设计综合 > 图片横向连续滚动的代码
<div style="width:264;height:31;overflow:hidden">
<nobr style="position:relative;top:0;width:264" id=news>
src="<img src="http://www.ruanchen.com/images/logo.gif";>
<imghttp://www.ruanchen.com/images/logo.gif";>
<img src="http://www.ruanchen.com/images/logo.gif";>
</nobr>
<script language="JScript">
function newsScroll(){
//news的居左距离等于它的居左距离取余它的宽度的一半
news.style.pixelLeft=(news.style.pixelLeft-1)%(news.clientWidth/2);
}
setInterval('newsScroll()',10);//循环执行函数
</script>