多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# **元理分析** **** ~~~ $(function () { var winH = $(window).height(); $('div').each(function () { $(this).css({visibility: 'hidden'})//让每一个元素都隐藏 this.xy = $(this).attr('class')//获取每一个元素的类名并且添加到dom对象的xy属性上 $(this).removeClass()//移除所有类名,作用就是清掉元素的运动状态。 }); $(window).scroll(function () { var winT = $(window).scrollTop(); $('div').each(function () { var divT = $(this).offset().top; if (winH + winT - divT > 100 && divT > winT) { $('div').css({visibility: ''}) $(this).addClass('animated ' + this.xy) } }) }) $(window).trigger('scroll') }) ~~~