用jQuery Waypoints淡化所有元素

时间:2016-12-04 07:33:49

标签: jquery-waypoints

我想用jQuery路点在滚动上淡化所有元素。当我滚动到图像时,我添加了一个特定的类来淡入它们。为此,我使用jQuery Waypoints。当我滚动到图像时,console.log显示"滚动到图像"但它不能用"这个"到图像。

$( document ).ready(function() { 
    $('img').waypoint(function() {
            console.log("Scrolled to Image");
            $(this).addClass("Test");
    },
    {
        offset: '50%',
        triggerOnce: true
    });    
});

0 个答案:

没有答案