2019-10-16 13:45:13 +08:00
|
|
|
# Visibility Height
|
2019-12-06 13:42:00 +08:00
|
|
|
You can change visibility height of backtop.
|
2019-10-16 13:45:13 +08:00
|
|
|
```html
|
|
|
|
<n-back-top
|
|
|
|
:bottom="100"
|
2020-01-29 19:48:38 +08:00
|
|
|
:visibility-height="300"
|
2019-12-06 13:42:00 +08:00
|
|
|
:style="{
|
|
|
|
transition: 'all .3s cubic-bezier(.4, 0, .2, 1)'
|
|
|
|
}"
|
|
|
|
:themed-style="{
|
|
|
|
light: {
|
|
|
|
color: 'rgb(0, 0, 0)',
|
|
|
|
backgroundColor: 'rgba(0, 0, 0, .3)'
|
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
color: 'rgb(255, 255, 255)',
|
|
|
|
backgroundColor: 'rgba(255, 255, 255, .3)'
|
|
|
|
}
|
|
|
|
}"
|
2019-10-16 13:45:13 +08:00
|
|
|
>
|
2019-12-06 13:42:00 +08:00
|
|
|
<div style="width: 200px; height: 40px; line-height: 40px; text-align: center; font-size: 14px;">
|
2020-01-29 19:48:38 +08:00
|
|
|
Visibility Height: 300px
|
2019-10-16 13:45:13 +08:00
|
|
|
</div>
|
|
|
|
</n-back-top>
|
|
|
|
```
|