I m currently using this code:
$(document).ready(function () {
var top = $( #sidebar ).offset().top - parseFloat($( #sidebar ).css( marginTop ).replace(/auto/, 0));
$(window).scroll(function (event) {
// what the y position of the scroll is
var y = $(this).scrollTop();
// whether that s below the form
if (y >= top) {
// if so, ad the fixed class
$( #sidebar ).addClass( fixed );
} else {
// otherwise remove it
$( #sidebar ).removeClass( fixed );
}
});
});
当我排在某个特定点后,则在我的旁边厅设置<条码>。 我想,我的旁边厅在达到点后,停止使用<条码>固定条码>,从整个页底起,时间为200页。 我如何能够这样做?