ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

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

2020-05-02 10:42:05  阅读:469  来源: 互联网

标签:load width 签到 微信 height 400rpx color margin 弹窗



效果图如下所示

在这里插入图片描述
图片素材:https://pan.baidu.com/s/1Fa_kFBTVmps3BZf-LsC32Q 提取码: ebvr

.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
    })
  }, 
})

有什么问题欢迎评论留言,我会及时回复你的

标签:load,width,签到,微信,height,400rpx,color,margin,弹窗
来源: https://blog.csdn.net/qq_43764578/article/details/105854829

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有