滚屏显示内容

发布时间:2020-06-18 11:03:55 作者:爱笑嘚蛋蛋
来源:网络 阅读:504

js

$div.myScroll({
    speed:60, //数值越大,速度越慢
});

html结构

<div>
    <ul>
        <li><p></p></li>
        <li><p></p></li>
        <li><p></p></li>
    </ul>
</div>

scroll.js

// JavaScript Document
(function($){
	$.fn.myScroll = function(options){
	//默认配置
	var defaults = {
		speed:40,  //滚动速度,值越大速度越慢
	};
	
	var opts = $.extend({}, defaults, options),intId = [];
	
	function marquee(obj, step){
	
		obj.find("ul").animate({
			marginTop: '-=1'
		},0,function(){
				var s = Math.abs(parseInt($(this).css("margin-top")));
				//20是p元素的浮动,s跟总高+浮动进行对比
				if(s >= ($(this).find("li").slice(0, 1).height() + 20)){
					$(this).find("li").slice(0, 1).appendTo($(this));
					$(this).css("margin-top", 0);
				}
			});
		}
		
		this.each(function(i){
			var speed = opts["speed"],_this = $(this);
			intId[i] = setInterval(function(){
				if(_this.find("ul").height()<=_this.height()){
					clearInterval(intId[i]);
				}else{
					marquee(_this);
				}
			}, speed);

			_this.hover(function(){
				clearInterval(intId[i]);
			},function(){
				intId[i] = setInterval(function(){
					if(_this.find("ul").height()<=_this.height()){
						clearInterval(intId[i]);
					}else{
						marquee(_this);
					}
				}, speed);
			});
		
		});

	}

})(jQuery);


推荐阅读:
  1. javaScript怎么显示和隐藏内容
  2. Vue如何实现html中根据类型显示内容

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

显示 滚屏

上一篇:java中的进程同步和同步传输

下一篇:android与java的不同之处

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》