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

Posted 城里的月光

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一个插件(学习别人写的)新闻上下滚动插件相关的知识,希望对你有一定的参考价值。

//头条新闻上下滚动

 <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)

 

 

 

 

 

 

  

 

 

  

以上是关于第一个插件(学习别人写的)新闻上下滚动插件的主要内容,如果未能解决你的问题,请参考以下文章

基于jQuery的新闻逐条滚动插件

原创新闻 11 个最佳 jQuery 滚动条插件

IDEA插件系列(67):ReadHub插件——新闻阅读器

如何用js实现一个横向滚动新闻?补充里已附图。求详细代码,不要太复杂的。最好使用div不要用table

学习 | jQuery全屏滚动插件FullPage.js

元素上下左右滚动插件,固定dom结构。基于jQuery,2009年