欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue.js上下滚动加载组件的实例代码

程序员文章站 2023-09-08 20:30:51
由于工作的需要并鉴于网上的vue.js滚动加载方案不合适,自己写了一个简单实用的。就短短的150行代码。 组件代码 // scrollloader.vu...

由于工作的需要并鉴于网上的vue.js滚动加载方案不合适,自己写了一个简单实用的。就短短的150行代码。

Vue.js上下滚动加载组件的实例代码

组件代码

// scrollloader.vue
// 滚动加载组件

<style scoped>
  .container-main {margin: 0 auto; overflow: auto; overflow-x: hidden; padding: 0;}
  .loading{ width: 100%; height: 40px; position: relative; overflow: hidden; text-align: center; margin: 5px 0 ; color: #999; font-size: 13px;}
  .loading-icon{color: #707070;};
  .loader {
    font-size: 10px;
    margin: 8px auto;
    text-indent: -9999em;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #999;
    background: -moz-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
    background: -webkit-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
    background: -o-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
    background: -ms-linear-gradient(left, #999 10%, rgba(255, 255, 255, 0) 42%);
    background: linear-gradient(to right, #999 10%, rgba(255, 255, 255, 0) 42%);
    position: relative;
    -webkit-animation: load3 1s infinite linear;
    animation: load3 1s infinite linear;
  }
  .loader:before {
    width: 50%;
    height: 50%;
    background: #999;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
  }
  .loader:after {
    background: #f5f5f5;
    width: 72%;
    height: 75%;
    border-radius: 68%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  @-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  }
  @keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  }

</style>

<template>
  <div id="scrollloader-container" class="container-main">
    <div class="loading" v-if="toploading">
      <div class="loader">加载中...</div>
    </div>

    <div :style="'min-height:' + realminheight + 'px; overflow-x:hidden'">
      <slot></slot>
    </div>

    <div class="loading" v-if="bottonloading">
      <div class="loader">加载中...</div>
    </div>
  </div>
</template>

<script>
  export default {
    name: "scroll-loader",

    props: {
      //给slot传一个最小值,保证一开始能出现滚动条
      'minheight': {
        type: number,
        default: 800
      }, 

    },

    created(){
    },
    computed: {
      realminheight(){
        return this.minheight + 30
      }
    },
    data() {
      return {
        toploading: false,
        bottonloading: false,

        stoptoploading: false, //是否停止传播滚动到顶部事件
        stopbottonloading: false, //是否停止传播滚动到底部事件
      }
    },
    mounted(){
      this.listenscroll();
    },

    methods: {
      listenscroll(){
        var me = this;
        var topdone = (stoptoploading) => {
          me.toploading = false;
          if(stoptoploading) me.stoptoploading = true;
        };

        var bottondone = (stopbottonloading) => {
          me.bottonloading = false;
          if(stopbottonloading) me.stopbottonloading = true;
        };
        settimeout(function(){
          var scrollcontainer = document.getelementbyid('scrollloader-container');

          scrollcontainer.onscroll = function(){

            if(scrollcontainer.scrolltop<=0 && !me.stoptoploading){
              if(me.toploading) return;

              me.toploading = true;
              me.$emit('scroll-to-top', topdone);
            }
            if((scrollcontainer.offsetheight + scrollcontainer.scrolltop+1 >= scrollcontainer.scrollheight) && !me.stopbottonloading){
              if(me.bottonloading) return;

              me.bottonloading = true;
              scrollcontainer.scrolltop += 40;
              me.$emit('scroll-to-botton', bottondone);
            }
          }
        }, 50)
      },

    }
  }
</script>

源码:https://github.com/doterlin/vue-wxchat

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。