jquery marquee 无缝滚动

来源:互联网 发布:java编译命令 编辑:程序博客网 时间:2024/05/09 07:46

推荐网址:http://www.miaoqiyuan.cn/products/jQuery.marquee/#direction_right

css/js文件下载:http://download.csdn.net/detail/luoxiabo_showsup/9787207

例如:

<div class="marquee-container">  <div class="direction_right">    <table>      <tr>        <td><img src="demo/images/pic1.jpg"></td>        <td><img src="demo/images/pic2.jpg"></td>        <td><img src="demo/images/pic3.jpg"></td>      </tr>    </table>  </div></div><style type="text/css">.direction_right img{max-height:150px;height:150px;}</style><script type="text/javascript">$(function(){$('.direction_right').marquee({'direction' : 'right'});});</script>


0 0