将鼠标悬停在元素上时,尝试将隐藏的div向下或向下滑动。 Div向下/向上滑动必须根据滚动位置调整位置。有什么帮助吗?
以下是我现有的一些代码
$(".team-box").hover(function () { $(".side-top").show();
if ($(window).scrollTop() - $(window).height() < $(this).offset().top){
$(".slide-top").css({top: "-130%"});
}
由于