安装vueuse: npm i @vueuse/core
1. 准备吸顶导航组
2.获取滚动距离
<script setup>
// vueUse 中 useScroll
import { useScroll } from '@vueuse/core'
const {y} = useScroll(window)
</script>
<template>
<div class="app-header-sticky" :class="{show:y>78}">
{{y}}
<!--组件内容 -->
</div>
</template>
<style scoped lang='scss'>
.app-header-sticky {
width: 100%;
height: 80px;
position: fixed;
left: 0;
top: 0;
z-index: 999;
background-color: #fff;
border-bottom: 1px solid #e4e4e4;
// 此处为关键样式!!!
// 状态一:往上平移自身高度 + 完全透明
transform: translateY(-100%);
opacity: 0;
// 状态二:移除平移 + 完全不透明
&.show {
transition: all 0.3s linear;
transform: none;
opacity: 1;
}
</style>
3.以滚动距离做判断条件控制组件盒子展示隐藏
文章来源:https://www.toymoban.com/news/detail-543632.html
文章来源地址https://www.toymoban.com/news/detail-543632.html
到了这里,关于Vue3----吸顶导航的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!