想請問一下
如何設定比如說按一個按鈕後
可以是動畫的(animate)滑到指定的p或位置?
https://www.snapchat.com/
比如像這個
按那個箭頭之後
他會往下移動
黄舟2017-04-17 14:30:24
Fly into shopping cart demo
Return to top Can you write? Just scroll p to the top
$('a').click(function() {
var pTop = $('p').offset().top;
$('html, body').animate({ scrollTop: pTop }, 120);
})
大家讲道理2017-04-17 14:30:24
Thank you for the invitation. CSS3 transform and transition can be done.