溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue+jquery+lodash如何實(shí)現(xiàn)滑動(dòng)時(shí)頂部懸浮固定效果

發(fā)布時(shí)間:2021-06-26 13:54:06 來源:億速云 閱讀:155 作者:小新 欄目:web開發(fā)

這篇文章給大家分享的是有關(guān)vue+jquery+lodash如何實(shí)現(xiàn)滑動(dòng)時(shí)頂部懸浮固定效果的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

這個(gè)效果是一個(gè)項(xiàng)目中抽出來的一個(gè)demo效果。

vue+jquery+lodash如何實(shí)現(xiàn)滑動(dòng)時(shí)頂部懸浮固定效果

前期準(zhǔn)備:

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節(jié)流函數(shù)
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, //定義一個(gè)截流函數(shù)的變量
  };
 },
 methods: {
  //滾動(dòng)的函數(shù)
  handleScroll() {
   let h = $(this.$refs.header).outerHeight(); //header的高度
   let wh = $(window).scrollTop(); //滾動(dòng)的距離的,為什么這里使用的jq,因?yàn)椴挥每紤]的什么的兼容問題
   let navH = $(this.$refs.nav).outerHeight(); //nav的高度

   if (wh > h) {
    this.isFixed = true;
   } else {
    this.isFixed = false;
   }
  },
 },

 mounted() {
  //寫在掉接口的里面的
  this.$nextTick(() => {
   //這里使用監(jiān)聽的scroll的事件,為什么要使用的節(jié)流函數(shù),如果不使用的,頁(yè)面一直在滾動(dòng)計(jì)算的,這樣在
   //使用手機(jī)時(shí)候,出現(xiàn)非常卡的,隔一段時(shí)間計(jì)算,大大降低了性能的消耗(具體的好處自己去查資料)
   window.addEventListener('scroll', this.throttleScroll, false);
  });

  this.throttleScroll = throttle(this.handleScroll, 100);
 },
 deactivated() {
  //離開頁(yè)面需要remove這個(gè)監(jiān)聽器,不然還是卡到爆。
  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>

感謝各位的閱讀!關(guān)于“vue+jquery+lodash如何實(shí)現(xiàn)滑動(dòng)時(shí)頂部懸浮固定效果”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI