根据API提示,请教如何优化一个简单但导致卡顿的height过渡动画-微信小程序开发 ...。cover-view 应该具备transform 和 opacity动画属性,但实际当中无法实现。
我设置了一个简单的view, 实现点击动画效果,原本应该同样适用于cover-view(在开发工具当中可以正常显示动画),但在真机测试当中点击后无任何效果
*.wxss
.button-one
{
width: 200px;
text-align: center;
font-size: 16px;
margin: 0 0 0 50px;
outline: none;
border-radius: 5px;
color: white;
background-color: #27ae60;
padding: 10px 20px;
user-select: none;
}
.button-one:active
{
transform: translateY(5px);
opacity: 0.8;
}
*.wxml
Tap Mecover-view>
将cover-view替换成view可正常显示效果
本文网址:http://www.91bianli.com/kaifazhinan/71673.html