jQuery:根据滚动位置改变滑动div位置

时间:2014-10-14 21:50:14

标签: jquery html scroll slide

将鼠标悬停在元素上时,尝试将隐藏的div向下或向下滑动。 Div向下/向上滑动必须根据滚动位置调整位置。有什么帮助吗?

以下是我现有的一些代码

$(".team-box").hover(function () { $(".side-top").show(); 
if ($(window).scrollTop() - $(window).height() < $(this).offset().top){ 
    $(".slide-top").css({top: "-130%"}); 
}

由于

0 个答案:

没有答案