我试图在击中div id 3秒后隐藏图像。看来我的if声明给了我一些重大问题..
jQuery(document).ready(function($) {
var topOfDiv = $("#entering-div").offset().top;
$(window).bind('scroll', function() {
if ($(window).scrollTop() > topOfDiv) {
console.log("top of div reached");
setTimeout(function() {
$('#quote-image').fadeOut();
},3000);
}
});
});
无法弄清楚if语句未被触发的原因。