微信小程序> 微信小程序动画之点击效果

微信小程序动画之点击效果

浏览量:411 时间: 来源:CodeHunter_qcy

微信小程序动画之点击效果

小程序
代码:
js:

// pages/test/test.jsPage({  containerTap: function (res) {    var that = this    var x = res.touches[0].pageX;    var y = res.touches[0].pageY + 85;    this.setData({      rippleStyle: ''    });    setTimeout(function () {      that.setData({        rippleStyle: 'top:' + y + 'px;left:' + x + 'px;-webkit-animation: ripple 0.4s linear;animation:ripple 0.4s linear;'      });    }, 200)  },})

wxml:

<view class="ripple" style="{{rippleStyle}}"></view><view class="container" bindtouchstart="containerTap"></view>

wxss:

page{height:100%}.container{    width:100%;    height:100%;    overflow: hidden}.ripple {    background-color:aquamarine;    border-radius: 100%;    height:10px;    width:10px;    margin-top: -90px;    position: absolute;        overflow: hidden}@-webkit-keyframes ripple {    100% {    webkit-transform: scale(12);    transform: scale(12);    background-color: transparent;    }}

版权声明

即速应用倡导尊重与保护知识产权。如发现本站文章存在版权问题,烦请提供版权疑问、身份证明、版权证明、联系方式等发邮件至197452366@qq.com ,我们将及时处理。本站文章仅作分享交流用途,作者观点不等同于即速应用观点。用户与作者的任何交易与本站无关,请知悉。

产品经理

手机 : 13312967497

擅长 : 小程序流量变现

扫码领取礼包

热门模板

  • 头条
  • 搜狐
  • 微博
  • 百家
  • 一点资讯
  • 知乎