时间:2020-10-29来源:www.pcxitongcheng.com作者:电脑系统城
ps: 悬浮固定在页面的底部,并且背景有白色层将页面底部文字的显示遮罩,一面影响显示观感。且不受页面下拉上提的影响。
wxml代码如下:
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<!--底部按钮的背景层--> <view class= "baise" ></view> <!--底部按钮--> <view class= "anniu" > <button formType= "submit" class= "btn-normal btbdstk" bindtap= "resetSalaryBtnClick" > <view class= "bdstk" > <text >重置条件</text> </view> </button> <button formType= "submit" disabled= "{{disabled}}" class= "btn-normal btbdstk" > <view class= "sqdzk" > <text>确认查询</text> </view> </button> </view> |
wxss样式如下:
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
/* 底部按钮 */ .baise{ background: #FFFFFF; display:flex; position:fixed; width:100%; height:150rpx; z-index:665; bottom:0rpx; } .anniu{ display:flex; position:fixed; width:95%; z-index:666; bottom:55rpx; } .btbdstk{ margin-left:30rpx; width:50%; } .bdstk{ font-size:30rpx; color: #ffffff; width:100%; border:2rpx solid #ffffff; border-radius:15rpx; background: #78B8FD; height: 95rpx; text-align: center; line-height:95rpx; } .sqdzk{ font-size:30rpx; color: #ffffff; width:100%; border:2rpx solid #ffffff; border-radius:15rpx; background: #FF7178; height: 95rpx; text-align: center; line-height:95rpx; } |
到此这篇关于微信小程序将页面按钮悬浮固定在底部的实现代码的文章就介绍到这了
2023-03-18
如何使用正则表达式保留部分内容的替换功能2023-03-18
gulp-font-spider实现中文字体包压缩实践2023-03-18
ChatGPT在前端领域的初步探索最近闲来无事,在自己的小程序里面集成了一个小视频的接口,但是由于小程序对于播放视频的限制,只能用来做一个demo刷视频了,没办法上线体验。小程序播放视频限制最多10个,超出可能...
2023-03-18
Vue.js、React和Angular对比 以下是Vue.js的代码示例: 以下是React的代码示例: 以下是Angular的代码示例:...
2023-03-18