naive-ui/demo/documentation/components/layout/zhCN/scroll-to.demo.md
2020-09-03 23:40:38 +08:00

1.2 KiB

滚动到

<n-button
  @click="$refs.sider.scrollTo({ top: 120, behavior: 'smooth' })"
>
  边栏滚到 120px
</n-button>
<n-button
  @click="$refs.content.scrollTo({ top: 120, behavior: 'smooth' })"
>
  内容滚到 120px
</n-button>
<n-layout style="height: 480px;">
    <n-layout-header style="height: 64px;">
      酷的页头
    </n-layout-header>
    <n-layout position="absolute" style="top: 64px; bottom: 64px;">
      <n-layout-sider position="absolute" ref="sider" style="overflow: auto;">
        <n-h1></n-h1><n-h1></n-h1><n-h1></n-h1>
        <n-h1></n-h1><n-h1></n-h1><n-h1></n-h1>
        <n-h1></n-h1><n-h1></n-h1><n-h1></n-h1>
        <n-h1></n-h1><n-h1></n-h1><n-h1></n-h1>
      </n-layout-sider>
      <n-layout position="absolute" :use-native-scrollbar="false" ref="content">
        <n-h1></n-h1><n-h1></n-h1><n-h1></n-h1>
        <n-h1></n-h1><n-h1></n-h1><n-h1></n-h1>
        <n-h1></n-h1><n-h1></n-h1><n-h1></n-h1>
        <n-h1></n-h1><n-h1></n-h1><n-h1></n-h1>
      </n-layout>
    </n-layout>
    <n-layout-footer position="absolute" style="height: 64px">
      酷的页脚
    </n-layout-footer>
  </n-layout>
.n-button {
  margin: 0 8px 12px 0;
}