美文网首页
移动端悬浮按钮

移动端悬浮按钮

作者: forever_bin | 来源:发表于2022-09-28 09:22 被阅读0次

分享一个uniapp中的悬浮按钮,移动端开发有时候会遇到悬浮按钮的使用,它可以定位不同位置也可以配置展开菜单,菜单还可以插入图片,菜单方向也可以设置,点击事件的触发等功能还是很全的

<template>
    <view>
        <uni-fab
            :pattern="pattern"
            :content="content"
            :horizontal="horizontal"
            :vertical="vertical"
            :direction="direction"
            @trigger="trigger"
        ></uni-fab>
    </view>
</template>

2022-09-29_090827.png 2022-09-29_090837.png 2022-09-29_090852.png 2022-09-29_090929.png

详细参数配置请参考官网https://uniapp.dcloud.net.cn/component/uniui/uni-fab.html#%E4%BB%8B%E7%BB%8D

相关文章

网友评论

      本文标题:移动端悬浮按钮

      本文链接:https://www.haomeiwen.com/subject/yinhartx.html