| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <template>
- <view class="back-top-wrapper" :style="{ bottom }">
- <view
- class="back-top"
- :class="{
- 'is-show': visible
- }"
- >
- <cl-icon name="skip-up-line" color="white" :size="50"></cl-icon>
- </view>
- </view>
- </template>
- <script setup lang="ts">
- import { computed, ref } from "vue";
- import { usePage } from "@/cool";
- defineOptions({
- name: "cl-page-back-top"
- });
- const page = usePage();
- const { screenHeight } = uni.getWindowInfo();
- // 是否显示回到顶部按钮
- const visible = ref(false);
- // 底部距离
- const bottom = computed(() => {
- let h = 20;
- if (page.hasCustomTabBar()) {
- h += page.getTabBarHeight();
- }
- return h + "px";
- });
- // 监听页面滚动
- page.onPageScroll((top) => {
- // 控制是否显示回到顶部按钮
- visible.value = top > screenHeight - 100;
- });
- </script>
- <style lang="scss" scoped>
- .back-top {
- @apply flex flex-row items-center justify-center bg-primary-500 rounded-full;
- width: 40px;
- height: 40px;
- transition-property: transform;
- transition-duration: 0.3s;
- transform: translateX(160rpx);
- &.is-show {
- transform: translateX(-20px);
- }
- &-wrapper {
- @apply fixed z-50 overflow-visible;
- right: 0;
- }
- }
- </style>
|