当前位置:网站首页>小程序-按钮透明无边框
小程序-按钮透明无边框
2022-08-08 21:03:00 【皮皮灬虾】
小程序-按钮透明无边框
老规矩,多话不说,直接上代码
一、wxml代码
<button class="getUserInfo" open-type="getUserInfo" bindgetuserinfo="getUserInfo" plain="true" hover-class="active">点击登录</button>
解释:
open-type
:微信开放能力;
bindgetuserinfo
:用户点击该按钮时,会返回获取到的用户信息,回调的detail数据与wx.getUserInfo返回的一致,open-type="getUserInfo"时有效;
plain
:按钮是否镂空,背景色透明;
hover-class
:指定按钮按下去的样式类。当 hover-class="none"
时,没有点击态效果。
二、css代码
/*授权按钮*/
.getUserInfo{
font-size: 30rpx;
padding: 0;
margin: 0;
height: 60rpx;
line-height: 60rpx;
}
/*背景透明时 出现黑色边框 去除边框*/
button[plain] {
border: none;
border-color: transparent;
}
欢迎各位大佬有不懂的请留言,我会及时回复,希望大家一起探讨共同进步,转载请标明出处,谢谢!!!
边栏推荐
猜你喜欢
pytorch实现数据集读取/下载
2 Scrapy
Bluu Seafood launches first lab-grown fish products
Flask 教程 第五章:用户登录
GeoServer入门学习:05-多层级MBTiles规范数据发布
GeoServer入门学习:07-发布多层级TIF地图大图数据
文档图像二值化DIB_paper_2(更新中...)
SQL注入之搭建dnslog
使用LBP特征进行图像分类
The new database is online | CnOpenData information transmission, software and information technology service industry basic information data of industrial and commercial registered enterprises
随机推荐
Flask 教程 第十二章:日期和时间
二叉树前序遍历、中序遍历、后序遍历的迭代版
文档图像二值化DIB_database
Flask 教程 第三章:Web表单
AtCoder Beginner Contest 263(A~F)
图神经网络GNN简介及应用方向
【导出PDF-项目应用】
The access to the local projects, localhosthost can, local IP can't 】
[The browser opens the exported excel]
目标检测论文 Bridng the Gap Between Anchor-based and Anchor-free Detection via ATSS
第06篇 MEF部件的生命周期(PartCreationPolicy)
Blazor PWA 单页应用身份认证机制示例
澳洲ABM创新模式将销售代理权给到个体,让利消费者
【带信息的Excel模板下载】
GeoServer入门学习:07-发布多层级TIF地图大图数据
charles简单使用
第十三届蓝桥杯(Web 应用开发)线上模拟赛【第十题】(RESTful API 开发)
Flask 教程 第十三章:国际化和本地化
2 Scrapy
WebView的使用