diff --git a/example/docs/zh-CN/components/backtop.md b/example/docs/zh-CN/components/backtop.md index ffd6843e..c027681b 100644 --- a/example/docs/zh-CN/components/backtop.md +++ b/example/docs/zh-CN/components/backtop.md @@ -1,6 +1,6 @@ ::: title 基础使用 -###### 回到顶部组件的默认样式,通过滑动来查看页面右下角的按钮。 +###### 回到顶部组件的默认样式,通过滑动来查看页面右下角的正方形按钮。 ::: ::: demo @@ -9,18 +9,6 @@ - - ::: :::title 自定义 @@ -29,19 +17,19 @@ export default { ::: demo - + - - - - - + + + + + + + + + + + - - -::: - -::: title 结合 tooltip 组件使用 - -###### 可以和 lay-tooltip 组件搭配使用 - -::: -::: demo - - - - - - - {{index + ". layui-vue , 基 于 vue 3.0 的 桌 面 端 组 件 库 , layui 的 另 一 种 呈 现 方 式"}} - - - - - - - - - - ::: @@ -155,22 +84,22 @@ export default { | ------------------------- | --------------------------------------------- | ------- | -------------------------- | | 通用属性 | | target | 可选,触发滚动的对象 | string | 元素选择器 \| window(默认) | -| showHeight | 可选,滚动高度达到该值后显示回到顶部按钮 | number | 200(默认) | +| showHeight | 可选,滚动高度达到该值后显示回到顶部按钮 | number | 200(默认) | | disabled | 可选,禁用点击返回顶部 | boolean | true \| false(默认) | | 组件样式 | -| position | 可选,定位方式,特定容器内部需设置为 absolute | string | absolute \| fixed(默认) | -| right | 可选,按钮距离页面右边距,单位 px | number | 30(默认) | -| bottom | 可选,按钮距离页面底部位置,单位 px | number | 40(默认) | +| position | 可选,定位方式,特定容器内部需设置为 absolute | string | absolute \| fixed(默认) | +| right | 可选,按钮距离页面右边距,单位 px | number | 30(默认) | +| bottom | 可选,按钮距离页面底部位置,单位 px | number | 40(默认) | | bgcolor | 可选,背景颜色 | string | \#9F9F9F(默认) | | opacity | 可选,不透明度 | number | 0.0-1.0 | | color | 可选,前景颜色 | string | #FFFFFF | | borderRadius | 可选,添加圆角 | string | 2px(默认) | -| -| 图标样式 | -| icon | 可选,图标类型 | string | layui-icon-top(默认) | -| iconSize | 可选,图标大小 | number | 30 | -| iconPrefix | 可选,图标前缀 layui-icon layui-icon-top | string | layui-icon(默认) | -| iconColor | 可选,图标颜色 | string | #FFFFFF(默认) | +| circular | 可选, 使用圆形按钮 | boolean | true \| false(默认) +| 图标样式 | +| icon | 可选,图标类型 | string | layui-icon-top(默认) | +| iconSize | 可选,图标大小 | number | 30 | +| iconPrefix | 可选,图标前缀 layui-icon layui-icon-top | string | layui-icon(默认) | +| iconColor | 可选,图标颜色 | string | #FFFFFF(默认) | ::: @@ -181,7 +110,7 @@ export default { | 事件名 | 说明 | 回调参数 | | ------ | -------------------------- | -------- | -| click | 点击回到顶部按钮的回调函数 | event | +| click | 点击回到顶部按钮的回调函数 | event | ::: diff --git a/src/module/backTop/index.less b/src/module/backTop/index.less index f6439693..95717a2e 100644 --- a/src/module/backTop/index.less +++ b/src/module/backTop/index.less @@ -1,20 +1,20 @@ /** backtop **/ -.lay-backtop { +.layui-backtop { position: fixed; - right: 15px; - bottom: 15px; - z-index: 999999; + right: 30px; + bottom: 40px; width: 50px; height: 50px; - line-height: 50px; - margin-bottom: 1px; - text-align: center; + display: flex; + align-items: center; + justify-content: center; cursor: pointer; font-size: 40px; background-color: #9f9f9f; - color: #fff; + color: #ffffff; border-radius: 2px; opacity: 0.95; + z-index: 999999; :hover { opacity: 0.85; } diff --git a/src/module/backTop/index.vue b/src/module/backTop/index.vue index 5d5dfd9f..804636e4 100644 --- a/src/module/backTop/index.vue +++ b/src/module/backTop/index.vue @@ -1,29 +1,20 @@ - - - - + @@ -36,29 +27,28 @@ export default {
- {{index + ". layui-vue , 基 于 vue 3.0 的 桌 面 端 组 件 库 , layui 的 另 一 种 呈 现 方 式"}} -