naive-ui/demo/documentation/components/backTop/enUS/changePosition.md
2019-12-06 13:42:00 +08:00

25 lines
532 B
Markdown

# Change Position
```html
<n-back-top
:right="40"
:bottom="160"
:visibility-height="200"
: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)'
}
}"
>
<div style="width: 200px; height: 40px; line-height: 40px; text-align: center; font-size: 14px;">
Change Position
</div>
</n-back-top>
```