> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rebellapp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# my.stopPullDownRefresh

> Stop the pull-down refresh animation.

Use this API to stop the pull-down refresh animation.

## Parameters

| Property | Type     | Required | Description                   |
| -------- | -------- | -------- | ----------------------------- |
| success  | Function | No       | Callback on success           |
| fail     | Function | No       | Callback on failure           |
| complete | Function | No       | Callback that always executes |

## Code Example

```javascript theme={null}
Page({
  onPullDownRefresh() {
    this.fetchData().then(() => {
      my.stopPullDownRefresh();
    });
  }
});
```

## Related APIs

<CardGroup cols={2}>
  <Card title="my.startPullDownRefresh" icon="rotate" href="/jsapi/ui/pulldown/my.startPullDownRefresh">
    Start pull-down refresh
  </Card>
</CardGroup>
