我想用jQuery路点在滚动上淡化所有元素。当我滚动到图像时,我添加了一个特定的类来淡入它们。为此,我使用jQuery Waypoints。当我滚动到图像时,console.log显示"滚动到图像"但它不能用"这个"到图像。
$( document ).ready(function() {
$('img').waypoint(function() {
console.log("Scrolled to Image");
$(this).addClass("Test");
},
{
offset: '50%',
triggerOnce: true
});
});