91名师指路-头部
91名师指路

uniapp实现悬浮按钮

由于某些原因,现在不支持支付宝支付,如需要购买源码请加博主微信进行购买,微信号:13248254750

一:uniapp自定义悬浮按钮

1.1)代码如下
<template>
<view>

<button class="float-button" hover-class="hover-btn-bg">
<uni-icons type="mic" size="40px" color="#fff" />
</button>

</view>
</template>

<script>
export default {
data() {
return {

};
},
onLoad() {

},
methods: {

}
};
</script>

<style lang="scss">
.float-button {
position: fixed;
right: 15px;
bottom: 110px;
width: 55px;
height: 55px;
border-radius: 50%;
background: #39b54a;
text-align: center;
display: flex;
align-items:center;
justify-content: center;
box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
z-index: 999;
}
.hover-btn-bg{
background-color: green;
color: #fff;
}
</style>


1.2)效果图如下






2023-07-16 15:39:20     阅读(903)

名师出品,必属精品    https://www.91mszl.com

联系博主    
用户登录遮罩层
x

账号登录

91名师指路-底部