码迷,mamicode.com
首页 > 其他好文 > 详细

第一个插件(学习别人写的)新闻上下滚动插件

时间:2017-06-24 16:25:37      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:latest   javascrip   app   var   interval   highlight   hover   class   set   

//头条新闻上下滚动

 <div class="mesBox" id="mesBox">
                        <span></span>
                        <ul class="latest_txt">
                            <li>
                       <a href="##" style="color:#ca4712;">ceshiceishiceshi </a> 
                                </li>
                  
                            </ul>
                    </div>



//调用
$(‘#mesBox‘).Slidepag(5000)

//js
//头条新闻上下滚动
(function($){
$.fn.Slidepag=function(speed){
new Slide(this,speed);
}
function Slide(obj,speed){
var self=this;
$(obj).hover(function(){
self.stop();
},function(){
self.start();
})
this.start=function(){
this.begin=setInterval(function(){
$(obj).find(‘ul>li:eq(0)‘).animate({‘margin-top‘:‘-35px‘},‘slow‘,function(){
$(this).clone().css(‘margin-top‘,0).appendTo($(obj).find(‘ul‘));
$(this).remove();
})
},speed)
}
this.stop=function(){
clearInterval(this.begin);
}
self.start();
}
})(jQuery)

 

 

 

 

 

 

  

 

 

  

第一个插件(学习别人写的)新闻上下滚动插件

标签:latest   javascrip   app   var   interval   highlight   hover   class   set   

原文地址:http://www.cnblogs.com/chenglideyueguang/p/7073455.html

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