最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

jquery简单实现纵向的无缝滚动代码实例

来源:动视网 责编:小采 时间:2020-11-27 21:59:34
文档

jquery简单实现纵向的无缝滚动代码实例

jquery简单实现纵向的无缝滚动代码实例:简单实现纵向无缝滚动(不要忘记引入jquery文件哦) 看效果: 1、HTML代码 <!DOCTYPE html> <html lang=zh-CN> <head> <meta charset=utf-8> <title>简单的jQuery无缝向上滚动效果&l
推荐度:
导读jquery简单实现纵向的无缝滚动代码实例:简单实现纵向无缝滚动(不要忘记引入jquery文件哦) 看效果: 1、HTML代码 <!DOCTYPE html> <html lang=zh-CN> <head> <meta charset=utf-8> <title>简单的jQuery无缝向上滚动效果&l


简单实现纵向无缝滚动(不要忘记引入jquery文件哦)

看效果:

1、HTML代码

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>简单的jQuery无缝向上滚动效果</title>
</head>
<body>
	<div class="myscroll">
	<ul>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	<li><a href="">简单的jQuery无缝向上滚动效果</a></li>
	</ul>
	</div>
</body>
</html>

2、css代码

<style>
* { margin: 0; padding: 0;list-style:none;}
.myscroll {
	width: 300px;
	height: 260px;
	margin: 0 auto;
	line-height: 26px;
	font-size: 12px;
	overflow: hidden;
	border:2px solid orange;
}
.myscroll li {
	height: 26px;
	padding:0 10px;
	font-size:14px;
}
.myscroll a {
	color: #333;
	text-decoration: none;
}
.myscroll a:hover {
	color: orange;
	text-decoration: underline;
}
</style>

3、js代码

(function($){
	$.fn.myScroll = function(options){
	//默认配置
	var defaults = {
	speed:40, //滚动速度,值越大速度越慢
	rowHeight:24 //每行的高度
	};

	var opts = $.extend({}, defaults, options),
	intId = [];

	function marquee(obj, step){

	obj.find("ul").animate({//html中必须有的ul
	marginTop: '-=1'
	},0,function(){
	var s = Math.abs(parseInt($(this).css("margin-top")));
	if(s >= step){
	$(this).find("li").slice(0, 1).appendTo($(this));//截取ul中的第一个li,添加到ul的最后
	$(this).css("margin-top", 0);
	}
	});
	}

	this.each(function(i){
	var rowHeight = opts["rowHeight"],
	speed = opts["speed"],
	_this = $(this);//这里的_this指向div.myscroll

	intId[i] = setInterval(function(){
	if(_this.find("ul").height()<=_this.height()){//当ul的高度小于html中,div.myscroll的高度,则结束定时器
	clearInterval(intId[i]);
	}else{
	marquee(_this, rowHeight);
	}
	}, speed);

	_this.hover(function(){//鼠标移动到div.myscroll上时,结束定时器
	clearInterval(intId[i]);
	},function(){//鼠标离开div.myscroll容器,判断ul的高度若小于等于div.myscroll高度,则结束定时器(不滚动),否则调用marquee函数
	intId[i] = setInterval(function(){
	if(_this.find("ul").height()<=_this.height()){
	clearInterval(intId[i]);
	}else{
	marquee(_this, rowHeight);
	}
	}, speed);
	});
	});
	}
})(jQuery);

4、调用

$(function(){
	$('.myscroll').myScroll({
	speed: 40, //数值越大,速度越慢
	rowHeight: 26 //li的高度
	});
});

以上所述是小编给大家介绍的jquery简单实现纵向的无缝滚动详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

文档

jquery简单实现纵向的无缝滚动代码实例

jquery简单实现纵向的无缝滚动代码实例:简单实现纵向无缝滚动(不要忘记引入jquery文件哦) 看效果: 1、HTML代码 <!DOCTYPE html> <html lang=zh-CN> <head> <meta charset=utf-8> <title>简单的jQuery无缝向上滚动效果&l
推荐度:
标签: 实现 滚动 代码
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top