Skip to content

Commit bba7761

Browse files
author
liwenchao
committed
333
1 parent e2a7768 commit bba7761

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

README.md

+18-12
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
# vue-scrollwatch
22

33
> 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
410

511
特性:
612
- 滚动时判断出窗口中当前元素
713
- 暴露api scrollTo 自由指定要滚到的位置
814
- 滚动容器自由指定,不局限于window
915
- vue 指令的方式
10-
- 监听元素没有任何限制,无需使用id 或者 class 标记
1116
- 导航列表没有任何限制
1217

13-
点击查看[demo](https://Desdesdesgo.github.io/vue-scrollwatch/)
18+
19+
[click to demo](https://Desdesdesgo.github.io/vue-scrollwatch/)
1420

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 获得详细使用方式
1723
## Installation
1824

1925
```bash
@@ -27,8 +33,8 @@ Vue.use(vueScrollwatch)
2733
```
2834

2935
## Usage
30-
##### 导航
31-
##### nav
36+
导航
37+
nav
3238
```html
3339
<ul>
3440
<li @click="scrollTo('a')">section 1</li>
@@ -69,8 +75,8 @@ export default {
6975
```
7076

7177

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
7480

7581
```html
7682
<div id="#scrollDom">
@@ -92,11 +98,11 @@ export default {
9298
...
9399
}
94100
```
95-
##### you also can use class as selector
96-
##### 你也可以使用 class 来作为css 选择器
101+
you also can use class as selector
102+
你也可以使用 class 来作为css 选择器
97103

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+
滚动容器和监听元素之间不一定是父子关系,可以是爷孙关系,也可以是祖宗孙子关系
100106

101107

102108
## Options

0 commit comments

Comments
 (0)