我有一个简单的问题。我有一个隐藏在页面加载上的div。当用户切换div时,使用Jquery animate来打开位于锚点div下方并且不在视图中的div。一旦动画开始,是否可以滚动到顶部或略微进入新打开的div? div也现在水平动画,这就是我想要的。
jquery的
$('.specialOfferText').click(function() {
$('.offerPanelTab').animate({
width : 'toggle'
});
})
答案 0 :(得分:1)
由于您提到了滚动动画,.animate()
中有一个选项可用于 scrollTop
,因此您可以实现它。请尝试以下代码
$('.specialOfferText').click(function() {
$('.offerPanelTab').animate({
scrollTop: "add your pxs",
width : 'toggle'
});
})