美文网首页小程序
小程序点击按钮变色

小程序点击按钮变色

作者: 码农宝宝 | 来源:发表于2017-10-10 16:42 被阅读3650次

WXML里面:
<button hover="true" class="Itembtn" hover-class="btnhover"></button>
WXSS里面:
.Itembtn {
height: 58rpx;
display: inline-block;
line-height: 58rpx;
font-size: 30rpx;
color: #666;
background: #fff;
padding-left: 30rpx;
padding-right: 30rpx;
margin-right: 34rpx;
margin-bottom: 20rpx;
border-radius: 2rpx;
}

.btnhover {
background-color: #10a1ed;
border-radius: 10rpx;
}
最重要的是hover-class这个属性

相关文章

网友评论

    本文标题:小程序点击按钮变色

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