1
1
# vue-scrollwatch
2
2
3
3
> scrollwatch
4
+ features:
5
+ - auto detect element enter viewport when scroll
6
+ - expose api: scrollTo , to scroll element to enter viewport
7
+ - you can set scroll container ,not just window
8
+ - use vue directive
9
+ - no limitation of nav list
4
10
5
11
特性:
6
12
- 滚动时判断出窗口中当前元素
7
13
- 暴露api scrollTo 自由指定要滚到的位置
8
14
- 滚动容器自由指定,不局限于window
9
15
- vue 指令的方式
10
- - 监听元素没有任何限制,无需使用id 或者 class 标记
11
16
- 导航列表没有任何限制
12
17
13
- 点击查看[ demo] ( https://Desdesdesgo.github.io/vue-scrollwatch/ )
18
+
19
+ [ click to demo] ( https://Desdesdesgo.github.io/vue-scrollwatch/ )
14
20
15
- ##### learning usage from src/views/page1.vue and page2.vue
16
- ##### 查看源码中的src/views/page1.vue and page2.vue 获得详细使用方式
21
+ learning usage from src/views/page1.vue and page2.vue
22
+ 查看源码中的src/views/page1.vue and page2.vue 获得详细使用方式
17
23
## Installation
18
24
19
25
``` bash
@@ -27,8 +33,8 @@ Vue.use(vueScrollwatch)
27
33
```
28
34
29
35
## Usage
30
- ##### 导航
31
- ##### nav
36
+ 导航
37
+ nav
32
38
``` html
33
39
<ul >
34
40
<li @click =" scrollTo('a')" >section 1</li >
@@ -69,8 +75,8 @@ export default {
69
75
```
70
76
71
77
72
- ##### if you want to define a container to scroll (not window)
73
- ##### 如果你想指定滚动容器,而不是window
78
+ if you want to define a container to scroll (not window)
79
+ 如果你想指定滚动容器,而不是window
74
80
75
81
``` html
76
82
<div id =" #scrollDom" >
@@ -92,11 +98,11 @@ export default {
92
98
...
93
99
}
94
100
```
95
- ##### you also can use class as selector
96
- ##### 你也可以使用 class 来作为css 选择器
101
+ you also can use class as selector
102
+ 你也可以使用 class 来作为css 选择器
97
103
98
- ##### container and element to be watch hasn't to be father and sons,it also can be grandfather or grand-grandfather
99
- ##### 滚动容器和监听元素之间不一定是父子关系,可以是爷孙关系,也可以是祖宗孙子关系
104
+ container and element to be watch hasn't to be father and sons,it also can be grandfather or grand-grandfather
105
+ 滚动容器和监听元素之间不一定是父子关系,可以是爷孙关系,也可以是祖宗孙子关系
100
106
101
107
102
108
## Options
0 commit comments