首页 > 编程知识 正文

小程序修改组件样式,小程序 样式

时间:2023-05-05 00:43:37 阅读:216011 作者:1384

下面注意添加 hover-class 用于修改按压下去的样式

<button disabled="{{submitDisabled}}" class="submit-button" hover-class="button-hover">提交</button> /*正常样式*/.submit-button { color: white; background-color: #006eff;} /* 禁用时的样式 */.submit-button[disabled] { color: white; background-color: rgba(0, 110, 255, 0.7);} /* 按压下去的样式 */.submit-button.button-hover { background-color: rgba(0, 110, 255, 0.7); color: white;}

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。