vue项目实现回到顶部的两种超简单方法
时间:2024-04-30 10:25:33 来源:网络cs 作者:淼淼 栏目:运营工具 阅读:
vue 中实现回到顶部的两种方式:
(1)锚点方式
通过点击锚点回到指定位置:
<template><div id="topAnchor" ref="faultTree" class="wrap"> <a id="TOPUp" href="#topAnchor"> <img style="width: 100%;height: 100%;" src="../../../../assets/top.png" alt=""> </a> <!--其他业务逻辑代码--> ...</div></template>
样式:
<style>#TOPUp{ position: fixed; right: 45px; bottom: 100px; width: 40px; height: 40px; z-index: 99999999; box-shadow: 0px 0px 4px 4px #ecefef; border-radius: 600px;}</style>
2)scrollTop
通过点击事件将scrollTop重置为0,从而达到返回顶部的效果。
<template> <div class="hello_world"> <button class="top" @click="toTop">^</button> </div></template><script>export default { methods: { toTop() { document.documentElement.scrollTop = 0; }, },};</script><style>.hello_world { height: 5000px;}.top { position: fixed; width: 30px; height: 30px; bottom: 50px; right: 100px; background-color: aqua; }</style>
代码地址
代码搬运媛 / vue实现返回顶部的两种超简单方法 · GitCode
本文链接:https://www.kjpai.cn/news/2024-04-30/163685.html,文章来源:网络cs,作者:淼淼,版权归作者所有,如需转载请注明来源和作者,否则将追究法律责任!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
下一篇:返回列表