如图,我发现现在很多网站都用了这种css方法,但一定使用js或jq进行判断的吧,直觉告诉我应该有一个插件,他可以判断用户的屏幕滚动到了哪里,然后出发某个css3效果。哪位大神知道这插件叫啥名字??http://www.faceui.com/showcase?s_id=30&md=5 比如该网页下面这张图,当屏幕滚动到它的时候,指正才从左到右移动
ringa_lee
jq determines the screen scrollTop when the screen scrolls
$(window).scroll(function(){ console.log($(this).scrollTop()); 屏幕滚动高度 if($(this).scrollTop()>100){ /*滚动高度到达100时,给特定元素addClass*/ } });
Monitor the scroll bar height yourself Otherwise, use a plug-in wow.js, scrollReveal.js and so on
jq determines the screen scrollTop when the screen scrolls
Monitor the scroll bar height yourself
Otherwise, use a plug-in
wow.js, scrollReveal.js
and so on