码迷,mamicode.com
首页 > Web开发 > 详细

JS 滚动效果

时间:2016-07-30 19:37:47      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

地址:

https://github.com/aamirafridi/jQuery.Marquee

<script language="JavaScript" src="{DT_STATIC}file/shangqiu/script/jquery.marquee.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function (){
  var $mq = $("#marquee").marquee({
    //speed in milliseconds of the marquee
    duration: 20000,
    //gap in pixels between the tickers
    gap: 50,
    //time in milliseconds before the marquee will start animating
    delayBeforeStart: 0,
    //‘left‘ or ‘right‘
    direction: left,
    //true or false - should the marquee be duplicated to show an effect of continues flow
    duplicated: true
    });
    $(.someLink).mouseover(function(){
      $mq.marquee(pause);
    });
    $(.someLink).mouseout(function(){
      $mq.marquee(resume);
    });
});
</script>
<style type="text/css">
#marquee{ width:1200px; height:30px; overflow:hidden;}
.someLink{ margin-right:30px; float:left;}
</style>

html代码如下:

<ul class="marquee" id="marquee">                   
<!--{php $tags=tag("moduleid=21&condition=catid in(10,99) and status=3&level>0&order=addtime desc&pagesize=10&target=_blank&template=null");}-->
{loop $tags $t}
<li class="someLink"><a href="{$t[linkurl]}"  title="{$t[alt]}">{$t[title]}</a></li>
{/loop}
</ul>

完毕。

JS 滚动效果

标签:

原文地址:http://www.cnblogs.com/zl0372/p/marquee.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!