微信小程序按钮点击动画

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/qq_43390235/article/details/90668649

微信小程序按钮点击动画

在这里插入图片描述
GIF看起来可能会有点卡

wxml

<view class="confirm bubble">确定</view>

wxss

.confirm{
  width: 325rpx;
  height: 80rpx;
  background: #07c160;
  border-radius: 6rpx;
  font-size: 30rpx;
  color: #fff;
  line-height: 80rpx;
  text-align: center;
  
}
.bubble{  
  position: relative;
  overflow: hidden;
}
.bubble:after{
  content: "";
  background: #999;
  position: absolute; 
  width: 750rpx;
  height: 750rpx;
  left: calc(50% - 375rpx);
  top: calc(50% - 375rpx);
  opacity: 0;
  margin: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.bubble:active:after {
  transform: scale(0);
  opacity: 1;
  transition: 0s;
}



猜你喜欢

转载自blog.csdn.net/qq_43390235/article/details/90668649