如果案例有问题,可到QQ群找到今日相关压缩文件下载测试。

WXML:

  <view class="cebian">
<view animation="{{animation}}">
<view class="cebian01">
<text class="cebian011">电话</text>
</view>
<view class="cebian02">
<text class="cebian021">发布</text>
</view>
<view class="cebian03">
<text class="cebian031">咨询</text>
</view>
</view> <view class="cebian04" bindtap="anniuhide">
<image src="{{anniuimg}}" animation="{{animations}}"></image>
</view>
</view>

WXSS:

.cebian {
width: 50px;
height: auto;
display: flex;
flex-direction: column;
position: fixed;
bottom: 60px;
right: 20px;
z-index: ;
overflow: hidden;
}
.anniu{
position: relative;
left: 50px;
}
.cebian01, .cebian02,.cebian03,.cebian04 {
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
border-radius: 60px;
color: #fff;
}
.cebian02,.cebian03,.cebian04{
margin-top: 10px;
}
.cebian01{
background-color: #50cb67;
}
.cebian02{
background-color: #6785e5;
}
.cebian03{
background-color: #ec4149;
}
.cebian04{
background-color: #;
position: relative;
}
.cebian04>image{
width: 30px;
height: 30px;
position: relative;
top: 10px; }

JS:

Page({
data: {
jiantous: false,
anniuimg: '/picture/jiantou01.png',
},
/*右侧按钮部分效果*/
onReady: function () {
this.animation = wx.createAnimation();
this.animations = wx.createAnimation()
},
anniuhide: function () {
var leftjian = this.data.jiantous;
if (leftjian == false) {
this.animation.translate(, ).step();
this.animations.rotate().translate(,).step();
leftjian = true;
} else {
this.animation.translate(, ).step();
this.animations.rotate().translate(, ).step();
leftjian = false;
}
this.setData({
animation: this.animation.export(),
animations: this.animations.export(),
jiantous: leftjian,
});
},
})

效果图:

小程序animation动画效果综合应用案例(交流QQ群:604788754)的更多相关文章

  1. 小程序animation动画效果(小程序组件案例)

    WXML <view class="container"> <view class="page-body"> <view clas ...

  2. 微信小程序Animation动画的使用

    目录 1,前言 2,属性 3,使用 1,前言 和css3动画不同,小程序中动画是主要是通过js控制的,简单来说就是创建一个动画实例animation.调用实例的方法来定义动画效果.最后通过动画实例的e ...

  3. 微信小程序animation动画2种方法

    这里介绍 2 种方法一种是常规的小程序方法操作,另一种是引入动画库 1. 常规动画操作设置 wxml: <view> <view bindtap="clickMe" ...

  4. 微信小程序的动画效果

    前言 由于公司计划有变,所以从H5页面改成去小程序写.所以在着手开发小程序.本人也不是什么前端高手,只是一名写后端偶尔写写前端的渣渣.请前端大神们勿喷. 一.什么是微信小程序? 小程序在我的理解中只是 ...

  5. .net mvc 站点自带简易SSL加密传输 Word报告自动生成(例如 导出数据库结构) 微信小程序:动画(Animation) SignalR 设计理念(一) ASP.NET -- WebForm -- ViewState ASP.NET -- 一般处理程序ashx 常用到的一些js方法,记录一下 CryptoJS与C#AES加解密互转

    .net mvc 站点自带简易SSL加密传输   因项目需要,传输数据需要加密,因此有了一些经验,现简易抽出来分享! 请求:前端cryptojs用rsa/aes 或 rsa/des加密,后端.net ...

  6. Android中xml设置Animation动画效果详解

    在 Android 中, Animation 动画效果的实现可以通过两种方式进行实现,一种是 tweened animation 渐变动画,另一种是 frame by frame animation ...

  7. android中设置Animation 动画效果

    在 Android 中, Animation 动画效果的实现可以通过两种方式进行实现,一种是 tweened animation 渐变动画,另一种是 frame by frame animation ...

  8. 模仿百度首页“元宵节汤圆”动图,并实现360°不停旋转(CSS3的animation动画效果)

    模仿百度首页“元宵节汤圆”动图,并实现360°不停旋转(CSS3的animation动画效果) 效果图: 切图地址: https://ss1.bdstatic.com/5eN1bjq8AAUYm2zg ...

  9. 小程序中通过判断id来删除数据,当数据长度为0时,显示隐藏部分(交流QQ群:604788754)

    欢迎加入小程序交流群:本群定期更新在工作种遇到的小知识(交流QQ群:604788754) WXML: <!--遍历循环的数据部分--> <block wx:for="{{d ...

随机推荐

  1. Git 基础 —— 常用命令

    Git 基础学习系列 Git 基础 -- 安装 配置 别名 对象 Git 基础 -- 常用命令 Git 基础 -- 常见使用场景 Git基础 -- Github 的使用 git init 创建 Git ...

  2. BZOJ 4552: [Tjoi2016&Heoi2016]排序 线段树 二分

    目录 此代码是个假代码,只能糊弄luogu,以后再改,路过大佬也可以帮一下辣 update 10.6 此代码是个假代码,只能糊弄luogu,以后再改,路过大佬也可以帮一下辣 /* //fang zhi ...

  3. 记录Java中对url中的参数进行编码

    Code: import java.net.URLEncoder; import java.util.HashMap; import java.util.Iterator; import java.u ...

  4. Spring Cloud微服务体系搭建

    前期架构设计图: 参考博文: Eureka相关: Eureka注册与发现(高可用注册中心.注册服务.Feign服务调用):https://blog.csdn.net/qq_32529383/artic ...

  5. catalina.home与 catalina.base区别

    转载请注明出处: 以Tomcat6.0为例,其Tomcat目 录结构如下: bin (运行脚本) conf (配置文件) lib (核心库文件) logs (日志目录) temp (临时目录) web ...

  6. stm32 延时函数 delay_ms 范围

    void delay_us(u32 nus) { u32 temp; SysTick->LOAD=nus*fac_us; //时间加载 SysTick->VAL=0x00; //清空计数器 ...

  7. HDU 5887 Herbs Gathering(搜索求01背包)

    http://acm.hdu.edu.cn/showproblem.php?pid=5887 题意: 容量很大的01背包. 思路: 因为这道题目背包容量比较大,所以用dp是行不通的.所以得用搜索来做, ...

  8. UVa 714 抄书(贪心+二分)

    https://vjudge.net/problem/UVA-714 题意:把一个包含m个正整数的序列划分成k个非空的连续子序列,使得每个正整数恰好属于一个序列.设第i个序列的各数之和为S(i),你的 ...

  9. xtu 1242 Yada Number 打表

    Yada Number       Time Limit : 2000 MS   Memory Limit : 65536 KB   Yada Number Problem Description: ...

  10. linux 多进程fork

    对于父进程,fork函数返回了子程序的进程号,而对于子程序,fork函数则返回零,这样,对于程序,只要判定fork函数的返回值,就知道自己是处于父进程还是子进程中.