微信公众号开发

微信小程序——悬浮按钮

本文主要是介绍微信小程序——悬浮按钮,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

关键:    position: fixed;

wxml:

<navigator url="/pages/issue/index">
<image class='img' src='/assets/images/Home/add.png' bindtap='add'></image>
</navigator>

wxss:

.img{
float: right;
position: fixed;
bottom: 120rpx;
right: 20rpx;
width: 80rpx;
height: 80rpx;
}

js:

add(e){
console.log(e);
},

学习至:(3条消息) 微信小程序-组件悬浮_BlessingXRY的博客-CSDN博客

 

这篇关于微信小程序——悬浮按钮的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!