目前我的代码将在chrome和IE中触发但在firefox中没有任何内容..我添加了console.log并在FireFox中繁荣,代码到达那里,所以没有添加CSS?
jQuery("#eigth").waypoint(function(direction) {
console.log('got here');
jQuery("#globe").css({'filter:' : 'none', '-webkit-filter' : 'grayscale(0%)'});
});
答案 0 :(得分:1)
检查您的代码
jQuery("#eigth").waypoint(function(direction) {
console.log('got here');
jQuery("#globe").css({'filter:' : 'none', '-webkit-filter' : 'grayscale(0%)'});
});
语法错误(:)
{'filter' : 'none' instead of {'filter:' : 'none'