vue 實現上拉加載下拉刷新

項目需要用到上拉刷新下拉加載 所以自己手動實現了一個
組件:

<template>

    <div class="my-scroll" :class="[scrollState?'prohibit':'allow']" ref="myScroll" @scroll.passive="onScroll($event)" @touchstart="touchStart($event)" @touchmove="touchMove($event)" @touchend="touchEnd($event)"  >
        <div class="scroll-top" :style="{height:top+'px'}">
            <div v-if="aspect==2">
                <p v-if="state==6">
                    下拉刷新
                </p>
                <p v-if="state==1">
                    <i><img :src="Load"/></i>
                    <br/>
                    刷新中
                </p>
                <p v-if="state==2">鬆開刷新</p>
                <p v-if="state==3">
                    <i><img :src="Load"/></i>
                    <br/>
                    刷新完成
                </p>
            </div>
        </div>
        <!-- top -->
        <div class="scroll-list" :style="{ transform: 'translate3d(0, ' + top + 'px, 0)'}">
            <slot name='scrollList'></slot>
            <div class="scroll-bottom">
                <div v-if="state==4">加載中</div>
                <div v-if="state==5">加載完成</div>
                <div v-if="state==7">沒有更多</div>
            </div>
        </div>
    </div>
</template>
<script type="text/javascript">
import tween from '@/plugins/tween'
import Load from '@/assets/Load.gif'
    export default {
        name:'myScroll',
        props:{
            'page':{
                type:Object,  //counter:當前頁  pageStart:開始頁數  pageEnd:結束頁數  total:總頁數
            },
            'onRefresh':{ //刷新回調
                type:Function,
                require:true
            },
            'onPull':{ //加載回調
                type:Function,
                require:true
            },
            'getScrollTop':{ //獲取滾動條位置
                type:Function
            },
            'setScrollPage':{ //改變滾動條位置
                type:Function
            },
            'scrollState':{//是否可滑動
                type:Boolean,
                require:true
            }
        },
        data(){
            return {
                Load,
                pageX:0,
                pageY:0,
                state:0, 
                scrollPosition:0,
                myScroll:null,
                myScrollList:null,
                top:0,
                aspect:0, //1:向下 2:向上
                listHeight:0,
            }
        },
        created(){
        },
        methods:{
            ScrollTop(top){ //修改滾動條位置
                this.myScroll.scrollTop = top
            },
            /*
             * 刷新中:1
             * 鬆開刷新:2
             * 刷新完成:3
             * 加載中:4
             * 加載完成:5
             * 下拉刷新:6
             * 沒有更多:7
             */
            setState(index){ //修改狀態
                this.state = index
                if(index == 5||index == 3){
                    setTimeout(()=>{
                        this.state = 0
                        let timer = null;
                        let that = this;
                        var b=50,c=100,d=100,t=0;
                        cancelAnimationFrame(timer);
                        timer = requestAnimationFrame(function fn() {
                            var oTop = that.top;
                            if (that.top>0) {
                                that.top = Math.ceil(tween.Quart.easeInOut(10,oTop,8,10)) - 15
                                timer = requestAnimationFrame(fn);
                            } else {
                                cancelAnimationFrame(timer);
                                that.top = 0
                            }
                        });
                    },500)
                }
            },
            touchStart(e){ //觸摸事件
                this.pageX = e.targetTouches[0].pageX
                this.pageY = e.targetTouches[0].pageY
            },
            touchMove(e){ //觸摸滑動事件
                this.scrollPosition = this.myScroll.scrollTop //獲取滾動條位置
                if(this.scrollState&&e.targetTouches[0].pageY>this.pageY){ //向上滑動
                    this.aspect = 2
                    if(this.myScroll.scrollTop==0){
                        let diff = e.targetTouches[0].pageY - this.pageY - this.scrollPosition
                        this.top = Math.pow(diff, 0.9)
                        let ranget = diff/document.body.clientHeight*100 //計算在屏幕上滑動了多少
                        if(ranget > 20){
                            this.state = 2
                        }else if(ranget < 15){
                            this.state = 6
                        }
                         e.preventDefault()
                    }
                }else if(this.scrollState&&this.state!=4){ //向上滑動
                    this.aspect = 1
                }

            },
            touchEnd(e){
                if(this.aspect == 2&&this.state == 2||this.state == 1){ //上拉處理
                    this.top = 100
                    this.state = 1
                    this.topCallback()
                }else if(this.aspect == 2){
                    this.state = 0
                    this.top = 0
                }
            },
            onScroll(e){
                let listHeight = this.myScrollList.offsetHeight //列表總高度
                let listScrollTop = e.target.scrollTop + this.myScroll.offsetHeight //當前滾動條位置

                if(this.state == 0&&listHeight-listScrollTop < 100){
                    this.bottomCallback()
                }

                if(this.getScrollTop)this.getScrollTop(e.target.scrollTop) //返回X,Y
            },
            topCallback(){ //刷新回調
                this.onRefresh(this.state)
            },
            bottomCallback(){ //加載回調
                if(this.state != 7){
                    this.state = 4
                    this.onPull(this.state)
                }

            },
        },
        mounted(){
            this.myScroll = this.$refs.myScroll //獲取滑條dom
            this.myScrollList = this.myScroll.children[1] //獲取列表dom
        }
    }
</script>
<style lang="scss" scoped>
    .allow{
        overflow:hidden;
        height: auto;
    }
    .prohibit{
        max-width: 100%;
        max-height: 100%;
        height: 100%;
        overflow:hidden;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        will-change: transform;
        transition: all 450ms;
        backface-visibility: hidden;
        perspective: 1000;
    }
    .my-scroll{
        position: relative;
        color: #fff;
        .scroll-top{
            text-align: center;
            display:flex;
            position:absolute;
            top:0;
            left:0;
            width:100%;
            overflow: hidden;
            div{
                display:flex;
                height:auto;
                width:100%;
                justify-content: center;
                align-items:center;
                flex-wrap: wrap;
                i{
                    flex:1 0 100%;
                    display:block;
                    height: 0.4rem;
                }
                img{
                    width:0.6rem;
                }
                p{
                    flex:1 0 100%;
                }
            }
        }
        .scroll-list{
            overflow:hidden;
            min-height: 100%;
        }
        .scroll-bottom{
            text-align: center;
            line-height: 40px;
        }
    }
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230

使用:

<template>
    <div class="index">
        <my-scroll  ref="myScroll" :page="page" :on-refresh="onRefresh" :on-pull="onPull"  :get-scroll-top="getTop">
        <div slot="scrollList">
            <ul>
                <li v-for="(x,index) in list" :key="index">列表</li>
            </ul>
        </div>
        </my-scroll>
    </div>
</template>
<script type="text/javascript">
    import myScroll from '@/components/myScroll.vue'
    export default {
        data(){
            return{
                list:[],
                page:{
                    counter:1,  
                    pageStart:1,  
                    pageEnd:1,  
                    total:10
                },
            }
        },
        methods:{
            onRefresh(mun){ //刷新回調
                    setTimeout(()=>{
                        this.$refs.myScroll.setState(3);
                    },500)
            },
            onPull(mun){ //加載回調
                if(this.page.counter<=this.page.total){
                    setTimeout(()=>{
                        this.page.counter++
                        this.$refs.myScroll.setState(5)
                        for(let i=0;i<10;i++){
                            this.listdata.push({})
                        }
                    },500)
                }else{
                    this.$refs.myScroll.setState(7)
                }
            },
            getTop(y) {//滾動條位置

            },

        },
        components:{
            myScroll
        },
        created(){

        },
        mounted(){
            for(let i=0;i<1*50;i++){
                this.list.push({})
            }

        },

    }
</script>
<style lang="scss" scoped>
    .index{

    }
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69

上拉刷新實現思路:
1.通過touchstart獲取用戶第一次點擊的座標
2.通過touchmove 判斷向上滑動還是向下
4.判斷列表的滾動條是否在最頂部
5.然後判斷在這個屏幕滑動的比例 進行狀態顯示
下拉加載實現思路:
1.通過判斷滾動條位置實現下拉加載

樣式:
這裏寫圖片描述

注:緩動算法與tween.js 來自 https://www.cnblogs.com/cloudgamer/archive/2009/01/06/Tween.html 詳細用法這裏都有

github地址:https://github.com/FZliweiliang/vue-scroll

發佈了23 篇原創文章 · 獲贊 15 · 訪問量 5萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章