text Javascript Scroll添加类动画

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text Javascript Scroll添加类动画相关的知识,希望对你有一定的参考价值。

$('.animate').addClass('');
	$(window).scroll(function (event) {
	    var scroll = $(window).scrollTop();
		$('.animated').each( function() {
			var offset = $(this).offset();
			var topPosition = offset.top - 400;
			var InAnime = $(this).data('animation-in');
			var OutAnime = $(this).data('animation-out');			

			if(scroll > topPosition) {
				//$$()('.animate').css('margin','20px','display','block');
				//.fadeIn(500);
				$(this).addClass(InAnime);
				$(this).removeClass(OutAnime);
			}
			if($(this).hasClass(InAnime)) {
				if(scroll + 200  < topPosition ) {
					$(this).removeClass(InAnime);
					$(this).addClass(OutAnime);
					//$('.animate').css('margin','150px','display','block');
					//.fadeOut(500);
				}
			}
		});
	});	

以上是关于text Javascript Scroll添加类动画的主要内容,如果未能解决你的问题,请参考以下文章

添加课程到我的 使用jQuery滚动时

javascript 怎样实现点击后回到顶部

vue监听滚动事件,实现滚动监听(scroll滚动)

滚动后添加类也需要在刷新时工作

滚动 div 错误

text Smooth Scroll CSS / JS