jquery无缝滚动文字或图片循环滚动效果

jquery无缝滚动文字或图片循环滚动效果2158
调用示例
	<script type="text/javascript" src="images/kxbdSuperMarquee.js"></script>
	<script type="text/javascript">
		
		$(function(){
			//一次横向滚动一个
			$('#marquee1').kxbdSuperMarquee({
				distance:186,
				time:3,
				btnGo:{left:'#goL',right:'#goR'},
				direction:'left'
			});
			
			//一次纵向滚动一个
			$('#marquee2').kxbdSuperMarquee({
				distance:47,
				time:3,
				btnGo:{up:'#goU',down:'#goD'},
				direction:'down'
			});
			//一次滚动一屏
			$('#marquee3').kxbdSuperMarquee({
				distance:400,
				time:4,
				navId:'#mar3Nav',
				direction:'left'
			});
			
			//一次滚动一屏,不自动滚动,点击滚动
			$('#marquee4').kxbdSuperMarquee({
				isAuto:false,
				distance:186,
				btnGo:{left:'#goL2',right:'#goR2'},
				direction:'left'
			});
			//一次滚动一屏
			$('#marquee5').kxbdSuperMarquee({
				isEqual:false,
				distance:100,
				time:4,
				//btnGo:{up:'#goU',down:'#goD'},
				direction:'up'
			});
			//Marquee
			$('#marquee6').kxbdSuperMarquee({
				isMarquee:true,
				isEqual:false,
				scrollDelay:20,
				controlBtn:{up:'#goUM',down:'#goDM'},
				direction:'up'
			});
			
			
		});
 
	</script>

也许你还喜欢