未验证 提交 2fe58a1a 编写于 作者: L LiAn 提交者: Gitee

update zh-cn/application-dev/reference/arkui-ts/ts-container-scroll.md.

Signed-off-by: NLiAn <lian15@huawei.com>
上级 e8ec164e
......@@ -38,6 +38,13 @@ Scroll(scroller?: Scroller)
| Vertical | 仅支持竖直方向滚动。 |
| None | 不可滚动。 |
## 事件
| 名称 | 功能描述 |
| -------- | -------- |
| onScroll(xOffset:&nbsp;number,&nbsp;yOffset:&nbsp;number)&nbsp;=&gt;&nbsp;void | 滚动事件回调,&nbsp;返回滚动时水平、竖直方向偏移量。 |
| onScrollEdge(side:&nbsp;Edge)&nbsp;=&gt;&nbsp;void | 滚动到边缘事件回调。 |
| onScrollEnd()&nbsp;=&gt;&nbsp;void | 滚动停止事件回调。 |
## Scroller
......@@ -51,7 +58,7 @@ scroller: Scroller = new Scroller()
```
### scroller.scrollTo
### scrollTo
scrollTo(value: { xOffset: number | string, yOffset: number | string, animation?: { duration: number, curve: Curve } }): void
......@@ -67,7 +74,7 @@ scrollTo(value: { xOffset: number | string, yOffset: number | string, animation?
| animation | {<br/>duration:&nbsp;number,<br/>curve:&nbsp;[Curve](ts-animatorproperty.md)&nbsp;\|<br/>CubicBezier&nbsp;\|<br/>SpringCurve<br/>} | 否 | | 动画配置:<br/>-&nbsp;duration:&nbsp;滚动时长设置。<br/>-&nbsp;curve:&nbsp;滚动曲线设置。 |
### scroller.scrollEdge
### scrollEdge
scrollEdge(value: Edge): void
......@@ -81,7 +88,7 @@ scrollEdge(value: Edge): void
| value | Edge | 是 | - | 滚动到的边缘位置。 |
### scroller.scrollPage
### scrollPage
scrollPage(value: { next: boolean, direction?: Axis }): void
......@@ -93,7 +100,7 @@ scrollPage(value: { next: boolean, direction?: Axis }): void
| next | boolean | 是 | - | 是否向下翻页。true表示向下翻页,false表示向上翻页。 |
### scroller.currentOffset
### currentOffset
scroller.currentOffset(): Object
......@@ -107,7 +114,7 @@ scroller.currentOffset(): Object
| {<br/>xOffset:&nbsp;number,<br/>yOffset:&nbsp;number<br/>} | xOffset:&nbsp;水平滑动偏移;<br/>yOffset:&nbsp;竖直滑动偏移。 |
### scroller.scrollToIndex
### scrollToIndex
scroller.scrollToIndex(value: number): void
......@@ -125,15 +132,6 @@ scroller.scrollToIndex(value: number): void
| value | number | 是 | - | 要滑动到的列表项在列表中的索引值。 |
## 事件
| 名称 | 功能描述 |
| -------- | -------- |
| onScroll(xOffset:&nbsp;number,&nbsp;yOffset:&nbsp;number)&nbsp;=&gt;&nbsp;void | 滚动事件回调,&nbsp;返回滚动时水平、竖直方向偏移量。 |
| onScrollEdge(side:&nbsp;Edge)&nbsp;=&gt;&nbsp;void | 滚动到边缘事件回调。 |
| onScrollEnd()&nbsp;=&gt;&nbsp;void | 滚动停止事件回调。 |
## 示例
```
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册