这篇文章主要介绍了微信小程序实现点击按钮后修改颜色,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
需实现的功能:
点击按钮后,按钮的颜色会加深
效果展示:
原按钮
点击后的按钮
思路:
给按钮设置一个点击事件,点击了按钮后,修改按钮的样式。
代码:
test.wxml文件
<view wx:if="{{sty==0}}">
<view class="score" style="background-color:{{score}};" catchtap='score'>
<text>按钮一</text>
</view>
</view>
<view wx:if="{{sty==1}}">
<view class="score" style="background-color:{{score}};" catchtap='score'>
<text>按钮一</text>
</view>
</view>
test.js文件
Page({
/*** 页面的初始数据*/
data: {
sty:0,
score: '#fff5df',
},
score: function (e) {
//点击按钮,样式改变
let that = this;
that.setData({
sty: 1,
score: 'rgba(252,178,22, 0.3)'
});
},
)}
test.css文件
.score{
width:335rpx;
border-radius:10rpx 0rpx 0rpx 10rpx;
}
.score text{
color: #FCB216;
}