首頁 > 軟體

JavaScript實現頁面無縫捲動效果

2022-04-10 19:00:15

本文範例為大家分享了JavaScript實現頁面無縫捲動效果的具體程式碼,供大家參考,具體內容如下

目前我只使用兩種方式,如果還有其他方式,希望推薦一下。

1、js+transform

使用定時器動態增加大小,再把值賦給 transform,實現位置偏移,來實現無縫捲動。

html

一定要回圈兩遍資料,這樣的話,會出現兩個一樣的資料,在一個資料消失後,不會使頁面空白,而這時transform歸0,有從頭開始,因為兩個資料相同,歸0後視覺上就像無縫捲動。

<div style="height: 100%" @mouseenter="moveStar()" @mouseleave="moveLeave()">
      <table id="rollOne" border="1" :style="{transform:'translate(0px,'+flvPlayerTimer+'px)'}">
        <tr v-for="item in tableData" :key="item.index">
          <td width="25%">{{item.fxsj}}</td>
          <td width="15%">{{item.gjbh}}</td>
          <td width="35%">{{item.pzgs}}個</td>
          <td width="25%" style="cursor: pointer" @click="popu(2,item)"><span>詳情</span></td>
        </tr>
      </table>
      <table border="1" :style="{transform:'translate(0px,'+flvPlayerTimer+'px)'}">
        <tr v-for="item in tableData" :key="item.index">
          <td width="25%">{{item.fxsj}}</td>
          <td width="15%">{{item.gjbh}}</td>
          <td width="35%">{{item.pzgs}}個</td>
          <td width="25%" style="cursor: pointer" @click="popu(2,item)"><span>詳情</span></td>
        </tr>
      </table>
</div>

js

export default {
        name: "rolling",
        data() {
          return {
            flvPlayerTimer:0,
            timer:null
          }
        },
        props: {
          tableData: {
            type: Array
          },
        },
        mounted(){
          this.timer = setInterval(()=>{
            this.flvPlayerTimer-=1
            if(this.flvPlayerTimer== -($('#rollOne').height())){
              this.flvPlayerTimer =0
            }
          },100)
          // 別忘了定時器清除
          this.$once('hook:beforeDestroy',()=>{
            clearInterval(this.timer);
            this.timer = null;
          })
        },
        methods:{
         // 滑鼠觸碰停止
          moveStar(){
            clearInterval(this.timer);
            this.timer2 = null;
          },
          // 滑鼠離開始
          moveLeave(){
            this.timer = setInterval(()=>{
              this.flvPlayerTimer-=1
              if(this.flvPlayerTimer== -($('#rollOne').height())){
                this.flvPlayerTimer =0
              }
            },100)
          },
        }
    }

css

.fxlx{
    height: 16vh;
    width: 100%;
    table,table tr td {
      border:1px solid   rgba(41,143,229,0.3);
    }
    table{
      width: 90%;
      margin: 0 auto;
      th{
        opacity: 0.7;
        background: linear-gradient(rgba(53,123,203,0.7), rgba(9,57,113,0.7));
        font-size: 9rem;
        font-family: PingFang SC Regular, PingFang SC Regular-Regular;
        font-weight: 400;
        color: #ffffff;
        height: 28rem;
      }
      td{
        opacity: 0.8;
        font-size: 9rem;
        height: 30rem;
        font-family: PingFang SC Regular, PingFang SC Regular-Regular;
        font-weight: 400;
        color: #ffffff;
        background:#001c38
      }
    }
  }

2、使用vue-seamless-scroll外掛

1、安裝vue-seamless-scroll

npm install vue-seamless-scroll --save

2、引入元件

在某些時候實際頁面渲染後會出現點選事件失效的情況。這個問題是因為vue-seamless-scroll是用重複渲染一遍內部元素來實現捲動的,而JS的onclick只檢測頁面渲染時的DOM元素。記得在入門原生JS的時候也經常會遇見這個問題,經過一般百度,採用事件委託的方式解決。
在section上繫結事件handleClick,捕獲點選的DOM節點。事件中需求的資料可以直接用data綁在相應的dom上。

<div class="my-inbox" @click.stop="handleClick($event)">
      <vue-seamless-scroll :data="sendVal.body" :class-option="defaultOption">
        <!--        <div v-for="(item, index) in sendVal" :key="index" @click="jump(item)">-->
        <!--          <div class="wfjl1" v-show="index % 2 == 0">{{ item }}</div>-->
        <!--          <div class="wfjl2" v-show="index % 2 == 1">{{ item }}</div>-->
        <!--        </div>-->
        <table ref="movebox">
          <tr v-for="(item, index) in sendVal.body" :key="index">
            <td
              :data-obj="JSON.stringify(item)"
              :id="'xzq' + index"
              width="15%"
            >
              {{ item.range }}
            </td>
            <td
              :data-obj="JSON.stringify(item)"
              :id="'wflx' + index"
              width="20%"
            >
              {{ item.wflx }}
            </td>
            <td :data-obj="JSON.stringify(item)" :id="'sj' + index" width="25%">
              {{ item.sbsj }}
            </td>
            <td :data-obj="JSON.stringify(item)" :id="'zt' + index" width="20%">
              <img
                style="width: 71rem; height: 34rem; margin: 5rem 0"
                :src="item.image_result"
              />
            </td>
          </tr>
        </table>
      </vue-seamless-scroll>
</div>

js

import vueSeamlessScroll from "vue-seamless-scroll";
export default {
  name: "my-marquee-top",
  props: {
    sendVal: Object,
  },
  data() {
    return {
      isShow: true,
      time: "",
      url: "",
    };
  },
  components: {
    vueSeamlessScroll,
  },
  computed: {
    defaultOption() {
      return {
        step: 0.2, // 數值越大速度捲動越快
        limitMoveNum: 2, // 開始無縫捲動的資料量 this.dataList.length
        hoverStop: true, // 是否開啟滑鼠懸停stop
        direction: 1, // 0向下 1向上 2向左 3向右
        openWatch: true, // 開啟資料實時監控重新整理dom/
      };
    },
  },
  methods: {
    handleClick(item) {
      let message = JSON.parse(item.target.dataset.obj);
      this.$emit("jump", message);
    },
  }
  },
};```

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com