博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
小程序动画Animation,高度增加动画形式,图标旋转动画形式
阅读量:5067 次
发布时间:2019-06-12

本文共 1805 字,大约阅读时间需要 6 分钟。

<view class="serach-title serach-list"  animation="{

{animatheightadd}}" >
<i-row class="serach-top">
<i-col span="12" i-class="serach-titleLeft">航空汽油<i-icon type="collection_fill" size="15" color="#FFCB68"/></i-col>
<i-col span="12" i-class="serach-titleRight">3175.38</i-col>
</i-row>
<i-row class="source">
<i-col span="12" i-class="source-word">来源: 英国环境、食品及农村事务部 (DEFRA)(2016) - 范畴一</i-col>
<i-col span="12" i-class="source-value">kgCO2/t<i-icon type="playon_fill" class="menuclick"
data-show="{
{isdown}}"
  size="12" color="#62B0F2"
bindtap="menuclick" animation="{
{animationData}}"
/></i-col>
</i-row>
<i-row class="data-list">
<i-col span="12" i-class="data-listLeft word1">3127.67</i-col>
<i-col span="12" i-class="data-listRight word1">kgCO2/t</i-col>
</i-row>
<i-row class="data-list">
<i-col span="12" i-class="data-listLeft word2">3127.67</i-col>
<i-col span="12" i-class="data-listRight word2">kgCO2/t</i-col>
</i-row>
<i-row class="data-list">
<i-col span="12" i-class="data-listLeft word3">3127.67</i-col>
<i-col span="12" i-class="data-listRight word3">kgCO2/t</i-col>
</i-row>
</view>

menuclick(e){

var that=this;
var is=e.currentTarget.dataset.show
var animation = wx.createAnimation({
duration: 500,
timingFunction: "ease",
delay: 0,
transformOrigin: "50% 50%",
})
var animatheightadd = wx.createAnimation({
duration: 500,
timingFunction: 'ease-in',
})
if(that.data.isdown==false){
animation.rotate(90).step();
animatheightadd.height(200).step()
that.setData({
isdown:true,
animationData: animation.export(),
animatheightadd: animatheightadd.export(),
})
}else{
animation.rotate(0).step();
animatheightadd.height(75).step()
that.setData({
isdown:false,
animationData: animation.export(),
animatheightadd: animatheightadd.export(),
})
}
},

 

 

 

转载于:https://www.cnblogs.com/wjhaaa/p/9913979.html

你可能感兴趣的文章
c#自定义控件中的事件处理
查看>>
二十六、Android WebView缓存
查看>>
django Models 常用的字段和参数
查看>>
IOS--沙盒机制
查看>>
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
sqlite的坑
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
【题解】[P4178 Tree]
查看>>
Jquery ui widget开发
查看>>
更改git仓库地址
查看>>
有标号DAG计数 [容斥原理 子集反演 组合数学 fft]
查看>>
Recipe 1.4. Reversing a String by Words or Characters
查看>>
Rule 1: Make Fewer HTTP Requests(Chapter 1 of High performance Web Sites)
查看>>
sql注入
查看>>
「破解」Xposed强
查看>>
src与href的区别
查看>>
ABAP工作区,内表,标题行的定义和区别
查看>>
《xxx重大需求征集系统的》可用性和可修改性战术分析
查看>>
Python 中 创建类方法为什么要加self
查看>>
关于indexOf的使用
查看>>