欢迎来到258分享网,纯净的网络源码分享基地!

258资源分享网

全部作品
全部作品
网站源码
微信源码
素材特效
源码插件
视频教程
建站学院
热门搜索: 织梦  农业种植  农业  安全设置  官方
258资源分享 > 建站学院 > 微信开发 > 微信小程序--如何实现动画效果

推荐下载

HTML5响应式自适应网咯设计

2020-05-12   浏览:789

HTML5自适应律师工作室类网

2020-04-04   浏览:654

高端HTML5响应式企业通用网

2020-05-06   浏览:560

html5响应式外贸网站英文版

2020-05-08   浏览:545

HTML5影视传媒文化公司类网

2020-05-12   浏览:543

微信小程序--如何实现动画效果

发布时间:2021-01-01  

view plaincopyviewclass="view_a"imageanimation="{{animation}}"class="a_img"src="?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvVUZPMDAwMDE=http://www.yiyongtong.com/font/5a6L5L2T/fonts ...

 

 

 

微信小程序--如何实现动画效果

[html] view plain copy

 

<view  class="view_a">  

<image animation="{{animation}}" class="a_img" src="?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvVUZPMDAwMDE=http://www.yiyongtong.com/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==http://www.yiyongtong.com/dissolve/70/gravity/Center"></image>  

</view>  

<view class="sure" bindtap="dh">发射</view>  

[css] view plain copy

 

.sure{  

  width10%;  

  height:80rpx;  

  margin-top0rpx;  

  margin-left45%;  

  background#00ddff;  

  border-radius: 50rpx;  

  text-aligncenter;  

  line-height80rpx;  

  color#fff;  

}  

.view_a{  

  width100%;  

  height900rpx;  

  display: flex;  

  background-imageurl('?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvVUZPMDAwMDE=http://www.yiyongtong.com/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==http://www.yiyongtong.com/dissolve/70/gravity/Center');  

}  

.a_img{  

  margin-top600rpx;  

  margin-left:100rpx;  

  width80rpx;  

  height:80rpx;  

}  


[javascript] view plain copy

 

data: {  

    animation : ''  

 },  

 dh: function(){  

    var that = this;  

     //实例化  

     that.animation = wx.createAnimation({  

       duration: 200,  

       timingFunction: "ease",  

       delay: 1000,  

       transformOrigin: 'center',  

       success: function (res) {  

         console.log(res)  

       }  

     })  

     that.animation