图片文字动画组合切换

来源:https://www.sucaihuo.com/js/1631.html 2017-04-04 22:17浏览(372) 收藏

这是一款鼠标悬停图片跟随上下移动代码,效果设计感都不错。
图片文字动画组合切换
分类:图片代码 > 图片轮播 难易:初级
查看演示 下载资源 下载积分: 20 积分
var cnt		= 0;
		$thumbScroller.find('img').each(function(){
			var $img 	= $(this);
			$('<img/>').load(function(){
				++cnt;
				if(cnt == scrollerContentCnt){
					//one items height
					itemHeight = $thumbScroller.find('.content:first').height();
					buildScrollableItems();
					//show the scrollable container
					$thumbScroller.stop().animate({'left':'0px'},animSpeed);
				}
			}).attr('src',$img.attr('src'));
		});
评论0
头像

系统已开启自动识别垃圾评论机制,识别到的自动封号,下载出错或者资源有问题请联系全栈客服QQ 1915635791

1 2