編輯希望這更清楚。 :)當通過視口中途滾動時顯示隱藏div
現在,當您向下滾動時,您會注意到只有在觸摸視口頂部時纔會顯示粉紅色的div。當它通過視口時,我怎樣才能讓它出現?
https://jsfiddle.net/1p751fz5/
// constants
var BTN_CLS = 'owl-thumb-item',
\t \t BTN_ANIMATION_MILLIS = 200,
\t \t DIV_ANIMATION_MILLIS = 1000;
// document ready handler
$(document).ready(function() {
\t
// display buttons from first 'div'
showBtns('one', BTN_CLS);
// window scroll handler
$(window).scroll(function() {
$('.hidden').each(function(i, v) {
if ($(window).scrollTop() > $(this).offset().top) {
\t // show 'div' when scrolling
\t showDiv($(this), onCompleteDivAnimation($(this)));
}
});
});
});
/**
* Used to show an animated 'div' and perform some actions.
* @param {Function} completeCallback Action performed after animation.
* @param {Object} div Target element.
*/
function showDiv(div, completeCallback) {
// check if 'div' is currently animated and avoid animation queue
if (!div.is(':animated')) {
div.animate({
opacity: 1
}, {
complete: completeCallback,
duration: DIV_ANIMATION_MILLIS
});
}
};
/**
* Used to perform actions after completing a 'div' animation.
*/
function onCompleteDivAnimation(div) {
\t showBtns(div.prop('id'), BTN_CLS);
};
/**
* Used to show button(s) from a 'div' element.
* @param {String} divId Target element Id.
* @param {String} btnCls Button(s) CSS class.
*/
function showBtns(divId, btnCls) {
var btnGroup = getBtnGroup(divId, btnCls);
animateBtn(btnGroup);
};
/**
* Used for creating a group of button(s) from a 'div' element.
* @param {String} divId Target element Id.
* @param {String} btnCls Button(s) CSS class.
* @returns {Array} btnGroup
*/
function getBtnGroup(divId, btnCls) {
var domBtns = $('#' + divId + ' .' + btnCls),
btnGroup = [];
for (var i = 0; i < (domBtns || []).length; ++i) {
btnGroup.push(domBtns[i]);
}
return btnGroup;
};
/**
* Used to animate a button group that normally comes from a 'div' element.
*/
function animateBtn(btnGroup) {
\t btnGroup = btnGroup || [];
$(btnGroup.shift()).fadeIn(BTN_ANIMATION_MILLIS, function() {
if (btnGroup.length > 0) {
animateBtn(btnGroup);
}
});
};
'imagePos'只在頁面加載時設置一次,並使用'this'這是窗口 – charlietfl
@charlietfl所以我需要讓它被多次調用? o.o – user2252219
yes ...請注意,滾動事件每秒觸發很多次...應該使用一些去抖動以獲得更好的性能 – charlietfl