js圖片無縫滾動代碼

來源:互聯網
上載者:User

以前寫過一個jquery的左右滾動,現在想著弄一個js的無縫滾動。

網上下的 一個例子,覺得滾動很不穩,慢慢就變快了。下邊是我修改過的代碼:

js:

<script>

var speed=20//速度數值越大速度越慢

var www_qpsh_com2=null;

var www_qpsh_com1=null;

var www_qpsh_com=null;

var MyMar=null;

function load(){

www_qpsh_com2 = document.getElementById("www_qpsh_com2");

www_qpsh_com1 = document.getElementById("www_qpsh_com1");

www_qpsh_com = document.getElementById("www_qpsh_com");

var len = document.getElementById("table").getElementsByTagName("td").length;

if(len>4){//當圖片中少於4張圖片時,不滾動,原因是當圖片總寬度小於顯示框的寬度時,不需要滾動。

www_qpsh_com2.innerHTML=www_qpsh_com1.innerHTML;//將1中的內容複寫到這個id,以實現無縫。

Marquee();

}

}

function over(){

clearTimeout(MyMar);

}

function out(){

MyMar = setTimeout("Marquee()",speed);

}

function Marquee(){

if(www_qpsh_com2.offsetWidth-www_qpsh_com.scrollLeft<=0)

www_qpsh_com.scrollLeft-=www_qpsh_com1.offsetWidth

else{

www_qpsh_com.scrollLeft++;

}

MyMar = setTimeout("Marquee()",speed);

}

</script>

jsp頁面:

<div id=www_qpsh_com onmouseout="out()">

<table align=left cellpadding=0 cellspace=0 border=0>

<tr>

<td id=www_qpsh_com1 valign=top>

<table border=0 cellpadding=0 cellspacing=0 id="table">

<tr>

<td>

<img alt="js圖片連續向左滾動代碼" border=0 src="http://www.bkjia.com/uploads/allimg/131228/1423042950-0.jpg" width=157 height=121 hspace=2、>

</td>

<td>

<img alt="js圖片連續向左滾動代碼" border=0 src="http://www.bkjia.com/uploads/allimg/131228/1423042950-0.jpg" width=157 height=121 hspace=2、>

</td>

<td>

<img alt="js圖片連續向左滾動代碼" border=0 src="http://www.bkjia.com/uploads/allimg/131228/1423042950-0.jpg" width=157 height=121 hspace=2、>

</td>

<td>

<img alt="js圖片連續向左滾動代碼" border=0 src="http://www.bkjia.com/uploads/allimg/131228/1423042950-0.jpg" width=157 height=121 hspace=2、>

</td>

<td>

<img alt="js圖片連續向左滾動代碼" border=0 src="http://www.bkjia.com/uploads/allimg/131228/1423042950-0.jpg" width=157 height=121 hspace=2、>

</td>

</tr>

</table>

</td>

<td id=www_qpsh_com2 valign=top></td>

</tr></table>

</div>

本文出自 “IT邋遢員” 部落格,請務必保留此出處http://3795780.blog.51cto.com/3785780/1303320

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.