我有一个rails应用程序并使用bootstrap。更新并重新插入一个对象后,我想用快速动画滚动到div的顶部,因为我是基于updated_at订购的。我尝试了不同的版本,但无法使其正常发生。我所取得的只是能够在没有动画的情况下滚动到窗口的顶部。
我怎样才能让它发挥作用?
sws_scale
create.js.erb(在更新对象时调用此方法)
<body>
<header>.....</header>
<div id ="sidebar">...</div> //this is not scrollable
<div id = "page-content-wrapper"> //I can't decide which one is the scrollable one(wrapper/container/post-index)
<div class="container-fluid post-container">
<div class="post-index new-post-insert">
<%= render @posts %>
</div>
</div>
</div>
</body>
答案 0 :(得分:0)
如果你想要一个流畅的动画
,请尝试使用它 $("html, body").animate({ scrollTop: 0 }, "slow");