mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
1.9 KiB
1.9 KiB
Backtop
ボタンでトップに戻る
基本的な使い方
下にスクロールすると右下のボタンが表示されます。 :::demo
<template>
Scroll down to see the bottom-right button.
<el-backtop target=".page-component__scroll .el-scrollbar__wrap"></el-backtop>
</template>
:::
カスタマイズ
表示エリアは40px * 40pxです。 :::demo
<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 |