這篇文章主要介紹了vue專案中在使用vue-router切換頁面的時候滾動條自動滾動到頂部的實現方法,一般使用Window scrollTo() 方法實現,本文給大家簡單介紹了crollTop的使用,需要的朋友可以參考下
有時候我們需要頁面捲軸滾動到某一固定的位置,一般使用Window scrollTo()
方法。
語法就是:scrollTo(xpos,ypos)
xpos:必要。若要在視窗文件顯示區左上角顯示的文件的 x 座標。
ypos:必要。若要在視窗文件顯示區左上角顯示的文件的 y 座標。
例如滾動內容的座標位置100,500:
##window.scrollTo(100,500);
注意: 這個功能只在 HTML5 history 模式下可用。
當建立一個 Router 實例,你可以提供一個 scrollBehavior 方法:const router = new VueRouter({ routes: [...], scrollBehavior (to, from, savedPosition) { // return 期望滚动到哪个的位置 } })scrollBehavior 方法接收 to 和 from 路由物件。第三個參數 savedPosition 當且僅當 popstate 導覽 (透過瀏覽器的 前進/後退 按鈕觸發) 時才可用。 這個方法傳回滾動位置的物件訊息,長這樣:
{ x: number, y: number } { selector: string, offset? : { x: number, y: number }} (offset 只在 2.6.0+ 支持)如果傳回一個falsy (譯者註:falsy 不是false,參考這裡)的值,或是空對象,那麼就不會發生滾動。 範例:
scrollBehavior (to, from, savedPosition) { return { x: 0, y: 0 } }對於所有路由導航,簡單地讓頁面滾動到頂部。 返回savedPosition,在按下後退/前進按鈕時,就會像瀏覽器的原生表現那樣:
scrollBehavior (to, from, savedPosition) { if (savedPosition) { return savedPosition } else { return { x: 0, y: 0 } } }如果你要模擬『滾動到錨點』的行為:
scrollBehavior (to, from, savedPosition) { if (to.hash) { return { selector: to.hash } } }我們也可以利用路由元資訊更細顆粒度地控制滾動。
routes: [ { path: '/', component: Home, meta: { scrollToTop: true }}, { path: '/foo', component: Foo }, { path: '/bar', component: Bar, meta: { scrollToTop: true }} ]完整的例子:
import Vue from 'vue' import VueRouter from 'vue-router' Vue.use(VueRouter) const Home = { template: 'home
' } const Foo = { template: 'foo
' } const Bar = { template: `bar
Anchor
` } // scrollBehavior: // - only available in html5 history mode // - defaults to no scroll behavior // - return false to prevent scroll const scrollBehavior = (to, from, savedPosition) => { if (savedPosition) { // savedPosition is only available for popstate navigations. return savedPosition } else { const position = {} // new navigation. // scroll to anchor by returning the selector if (to.hash) { position.selector = to.hash } // check if any matched route config has meta that requires scrolling to top if (to.matched.some(m => m.meta.scrollToTop)) { // cords will be used if no selector is provided, // or if the selector didn't match any element. position.x = 0 position.y = 0 } // if the returned position is falsy or an empty object, // will retain current scroll position. return position } } const router = new VueRouter({ mode: 'history', base: __dirname, scrollBehavior, routes: [ { path: '/', component: Home, meta: { scrollToTop: true }}, { path: '/foo', component: Foo }, { path: '/bar', component: Bar, meta: { scrollToTop: true }} ] }) new Vue({ router, template: `
Scroll Behavior
router.afterEach((to,from,next) => { window.scrollTo(0,0); });上面是我整理給大家的,希望今後對大家有幫助。 相關文章:
以上是在vue中如何使用vue-router切換頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!