vue+jquery+lodash实现滑动时顶部悬浮固定效果
程序员文章站
2022-06-14 13:46:21
本文实例为大家分享了vue实现滑动时顶部悬浮固定效果的具体代码,供大家参考,具体内容如下
这个效果是一个项目中抽出来的一个demo效果。
前期准备:
1. 引入j...
本文实例为大家分享了vue实现滑动时顶部悬浮固定效果的具体代码,供大家参考,具体内容如下
这个效果是一个项目中抽出来的一个demo效果。
前期准备:
1. 引入jq
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.js"></script>
引入lodash.js
npm install lodash -d
fixtop.vue组件的
<template> <div class="fixtop2"> <header class="header" ref="header"></header> <div class="nav" ref="nav" :class="{isfixed:isfixed}"> <div class="box" v-for="(item,index) in list" :key="index"> {{item.title}} </div> </div> <ul class="content"> <li v-for="(item,index) in new array(20)" :key="index">{{index+1}}</li> </ul> </div> </template> <script> var throttle = require('lodash/throttle'); //从lodash中引入的throttle节流函数 export default { name: 'navscroll2', data() { return { list: [ { title: 'aaaa', id: 1 }, { title: 'bbbb', id: 2 }, { title: 'cccc', id: 3 }, { title: 'dddd', id: 4 }, ], isfixed: false, //是否固定的 throttlescroll: null, //定义一个截流函数的变量 }; }, methods: { //滚动的函数 handlescroll() { let h = $(this.$refs.header).outerheight(); //header的高度 let wh = $(window).scrolltop(); //滚动的距离的,为什么这里使用的jq,因为不用考虑的什么的兼容问题 let navh = $(this.$refs.nav).outerheight(); //nav的高度 if (wh > h) { this.isfixed = true; } else { this.isfixed = false; } }, }, mounted() { //写在掉接口的里面的 this.$nexttick(() => { //这里使用监听的scroll的事件,为什么要使用的节流函数,如果不使用的,页面一直在滚动计算的,这样在 //使用手机时候,出现非常卡的,隔一段时间计算,大大降低了性能的消耗(具体的好处自己去查资料) window.addeventlistener('scroll', this.throttlescroll, false); }); this.throttlescroll = throttle(this.handlescroll, 100); }, deactivated() { //离开页面需要remove这个监听器,不然还是卡到爆。 window.removeeventlistener('scroll', this.throttlescroll); }, }; </script> <style lang="scss" scoped> .fixtop2 { min-height: 100vh; } .header { height: 5rem; width: 100%; background-color: red; } .nav { display: flex; width: 100%; background-color: pink; &.isfixed { position: fixed; left: 0; top: 0; z-index: 9999; } .box { font-size: 0.3rem; padding: 0 0.3rem; height: 0.9rem; line-height: 0.9rem; color: #333333; flex: 1; } } .content { height: 20rem; li { width: 100%; height: 1rem; border-bottom: 1px solid #000; } } </style>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 交换友情链接时应该注意什么
下一篇: java批量解析微信dat文件
推荐阅读