微信小程序签到弹窗(动画效果)


效果图如下所示

在这里插入图片描述
图片素材:https://pan.baidu.com/s/1FGT8XANYO5PbzjE_QPfJ3w 提取码: kgv6

.wxml

<button bindtap="popup">签到</button>
<view class="load" style="{{sign?'':'top:calc((100vh - 750rpx)/2);opacity: 0;z-index:-1;'}}">
  <image class="loadingpic" src="/images/light.png"></image>
  <image class="load-imagae" src="/images/register.png"></image>
  <view class="load-centent">
    <view>签到成功</view>
    <view>获得0积分</view>
    <view bindtap="popup">好的</view>
  </view>
</view>

.wxss

page{
  background-color: #ccc;
}
view{
  box-sizing: border-box;
}
button{
  margin-top: 50rpx;
}
.load{
  width: 80%;
  height: 600rpx;
  position: fixed;
  top:calc((100vh - 800rpx)/2);
  left: 10%;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  opacity: 1;
  z-index: 10;
}
.loadingpic {
  width: 100%;
  height: 93%;
  position: absolute;
  animation: load 3s linear 1s infinite;
  z-index: 10;
  margin-top: 7%;
}
@keyframes load{
  0%{
		webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100%{
		webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.load-imagae{
  width:400rpx;
  height:400rpx;
  margin: 100rpx calc((100% - 400rpx)/2);
  position: absolute;
  z-index: 11;
}
.load-centent{
  width:400rpx;
  height:400rpx;
  margin: 100rpx calc((100% - 400rpx)/2);
  position: relative;
  z-index: 12;
  text-align: center;
  padding: 25% 10% 5% 10%;
}
.load-centent>view:nth-child(1){
  font-size: 34rpx;
  color: #fff;
}
.load-centent>view:nth-child(2){
  color: #fff;
  opacity: 0.7;
  margin: 20rpx 0;
  font-size: 24rpx;
}
.load-centent>view:nth-child(3){
  width: 85%;
  margin: 30rpx 7.5% 0 7.5%;
  height: 70rpx;
  line-height: 70rpx;
  border-radius: 40rpx;
  background-color: #F8D168;
  color: #EB4331;
  font-size: 30rpx;
}

.js

Page({
  data: {
    sign:false,
  },
  popup:function(e){
    this.setData({
      sign:!this.data.sign
    })
  }, 
})

有什么问题欢迎评论留言,我会及时回复你的
  • 8
    点赞
  • 43
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值