mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
55348b30b6
* style: use prettier * style: just prettier format, no code changes * style: eslint fix object-shorthand, prefer-const * style: fix no-void * style: no-console
64 lines
1.8 KiB
Markdown
64 lines
1.8 KiB
Markdown
## Backtop
|
|
|
|
ボタンでトップに戻る
|
|
|
|
### 基本的な使い方
|
|
|
|
下にスクロールすると右下のボタンが表示されます。
|
|
:::demo
|
|
|
|
```html
|
|
<template>
|
|
Scroll down to see the bottom-right button.
|
|
<el-backtop target=".page-component__scroll .el-scrollbar__wrap"></el-backtop>
|
|
</template>
|
|
```
|
|
|
|
:::
|
|
|
|
### カスタマイズ
|
|
|
|
表示エリアは 40px \* 40px です。
|
|
:::demo
|
|
|
|
```html
|
|
<template>
|
|
Scroll down to see the bottom-right button.
|
|
<el-backtop
|
|
target=".page-component__scroll .el-scrollbar__wrap"
|
|
:bottom="100"
|
|
>
|
|
<div
|
|
style="{
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: #f2f5f6;
|
|
box-shadow: 0 0 6px rgba(0,0,0, .12);
|
|
text-align: center;
|
|
line-height: 40px;
|
|
color: #1989fa;
|
|
}"
|
|
>
|
|
UP
|
|
</div>
|
|
</el-backtop>
|
|
</template>
|
|
```
|
|
|
|
:::
|
|
|
|
### 属性
|
|
|
|
| Attribute | Description | Type | Accepted Values | Default |
|
|
| ----------------- | ------------------------------------------------------------ | ------ | --------------- | ------- |
|
|
| target | スクロール対象 | string | | |
|
|
| visibility-height | ボタンはスクロールの高さがこの値に達するまで表示されません。 | number | | 200 |
|
|
| right | ライトディスタンス | number | | 40 |
|
|
| bottom | ボトムディスタンス | number | | 40 |
|
|
|
|
### イベント
|
|
|
|
| Event Name | Description | Parameters |
|
|
| ---------- | ---------------------- | ----------- |
|
|
| click | クリックするとトリガー | click event |
|