热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Vue点击导航栏,页面滚动到相应位置

需求:锚点导航,点击导航跳到对应的模块1.盒子滚动到指定高度scrollTo(offsetTop每个模块顶部距离可滚动盒子的顶部偏移的像

需求:锚点导航,点击导航跳到对应的模块

1.盒子滚动到指定高度 scrollTo(offsetTop每个模块顶部距离可滚动盒子的顶部偏移的像素值)

go (selector) {const height = document.querySelector(selector).offsetTopconst container = document.querySelector('.scroll-wrap')container.scrollTo({top: height,behavior: 'smooth'})},

2.元素滚动到滚动盒子的最顶部 scrollIntoView

go(selector) {document.getElementById("selector").scrollIntoView({ behavior: 'smooth' });},


推荐阅读
author-avatar
shmily志伟
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有