scroller.vue
3.33 KB
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
<template>
<div class="scroller-box">
<div
class="scroller-content"
ref="scroller"
:style="scrollerStyle"
@touchstart="touchstart"
@touchmove="touchmove"
@touchend="touchend">
<div class="scroller-top" :style="styleTop"></div>
<slot></slot>
</div>
</div>
</template>
<script>
export default {
name: 'Scroller',
props: {
topDistance: {
type: Number,
default: 50
}
},
data() {
return {
distance: 0,
transition: false,
direction: '',
isLoading: false,
styleTop: {}
};
},
computed: {
scrollerStyle() {
const style = {};
if (this.distance) {
style.transform = `translate(0px, ${this.distance}px)`;
}
if (this.transition) {
style.transition = 'transform .2s ease';
}
return style;
}
},
methods: {
loading() {
this.isLoading = true;
},
stop() {
setTimeout(() => {
this.isLoading = false;
this.styleTop = {
transition: 'margin .2s ease'
};
}, 500);
},
touchstart(e) {
this.startY = e.touches[0].clientY;
if (this.$el.scrollTop === 0) {
this.transition = false;
this.topStatus = 'pull';
}
},
touchmove(e) {
this.currentY = e.touches[0].clientY;
let distance = (this.currentY - this.startY) / 2;
this.direction = distance > 0 ? 'down' : 'up';
if (this.direction === 'down' && this.$el.scrollTop === 0 && this.topStatus) {
this.distance = distance;
if (distance > 0) {
e.preventDefault();
}
if (this.distance > this.topDistance) {
this.topStatus = 'drag';
}
}
},
touchend() {
if (this.direction === 'down' && this.$el.scrollTop === 0) {
this.transition = true;
if (this.topStatus === 'drag') {
this.styleTop = {
marginTop: '10px'
};
if (!this.isLoading) {
this.isLoading = true;
this.$emit('loading');
}
}
this.distance = 0;
}
this.topStatus = '';
}
}
};
</script>
<style lang="scss">
.scroller-box {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.scroller-top {
width: 43PX;
// height: 33PX;
// margin: 0 auto;
// margin-top: -43PX;
// margin-bottom: 10PX;
// background-image: url(~statics/img/pull_sprite.png);
// background-position: -1160PX 0;
// background-repeat: no-repeat;
// background-size: 1247PX 33PX;
// animation: loadingScroller 1.5s steps(29) .5s infinite;
}
@keyframes loadingScroller {
0% { background-position: 0 0; }
100% { background-position: -1247PX 0; }
}
</style>