function isVisiablePage($node){
if(($(window).scrollTop()>(
$node.offset().top+
$node.outerHeight()))||((jQuery(window).scrollTop()+jQuery(window).height())<
$node.offset().top)){
return false;
}
else{
return true;
}
}
$(window,document).scroll(
function(){
console.log(
'---->>',isVisiablePage($(
'.test')));
});
function isVisiableTop($node){
if($(window).scrollTop()>(
$node.offset().top+
$node.outerHeight())){
return true;
}
else{
return false;
}
}
function isVisiableBottom($node){
if(jQuery(window).scrollTop()<(
$node.offset().top-jQuery(window).height())){
return true;
}
else{
return false;
}
}
转载请注明原文地址: https://ju.6miu.com/read-1299382.html