你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
首页
热门
推荐
精选
登录
|
注册
微信小程序开发动感十足的加载动画--都在这里!
立即下载
用AI写一个
金额:
0
元
支付方式:
免费下载
发布时间:2018-10-16
112人
|
浏览:19626次
|
收藏
|
分享
技术:微信小程序
运行环境:微信小程序开发工具
概述
微信小程序开发动感十足的加载动画--都在这里!
详细
#### 一、前期准备工作 软件环境:微信开发者工具 官方下载地址:https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html ##### 1、基本需求。 - 实现加载动画 - 带动画(动画可做参靠,个人要是觉得不好看可以自定义动画) ##### 2、案例目录结构 ![](http://www.demodashi.com/contentImages/image/20180904/fcqyj2X6LvOu0ZID937.png) #### 二、程序实现具体步骤 ##### 1.index.wxml代码 ```
``` ##### 2.部分index.wxss代码 ``` .tui-loading-row{ width: 100%; display: table; table-layout: fixed; } .tui-loading-cell{ width: 100%; display: table-cell; text-align: center; } /*动画一:单个渐变 */ .circle-line{ width: 100px; height: 100px; display: inline-block; position: relative; } .circle-line text{ display: block; width: 50%; height: 5px; opacity: .7; position: absolute; top: calc(50% - 2.5px); left: 0px; transform-origin: center right; animation: circle 1.5s linear infinite; } .circle-line text::before{ content: ''; display: block; width: 15px; height: 5px; position: absolute; top: 0; right: 10px; background-color: blue; } .circle-line text:nth-child(1){ transform: rotate(0deg); animation-delay: 0.2s; } .circle-line text:nth-child(2){ transform: rotate(45deg); animation-delay: 0.4s; } .circle-line text:nth-child(3){ transform: rotate(90deg); animation-delay: 0.6s; } .circle-line text:nth-child(4){ transform: rotate(135deg); animation-delay: 0.8s; } .circle-line text:nth-child(5){ transform: rotate(180deg); animation-delay: 1s; } .circle-line text:nth-child(6){ transform: rotate(225deg); animation-delay: 1.2s; } .circle-line text:nth-child(7){ transform: rotate(270deg); animation-delay: 1.4s; } .circle-line text:nth-child(8){ transform: rotate(315deg); animation-delay: 1.6s; } @keyframes circle { 0%{ opacity: 0.05; } 100%{ opacity: 0.9; } } /*动画二:整体旋转 */ .circle-line-spin{ width: 100px; height: 100px; display: inline-block; position: relative; animation: circle-line 1.5s linear infinite; } .circle-line-spin text{ display: block; width: 50%; height: 5px; opacity: .7; position: absolute; top: calc(50% - 2.5px); left: 0px; transform-origin: center right; } ``` ##### 3.index.js逻辑代码 ``` 不需要就是这么任性 ``` #### 三、案例运行效果图 ![](/contentImages/image/20181016/zfcghTzoqiCpHDGr6jL.gif) #### 四、总结与备注 暂无
本实例支付的费用只是购买源码的费用,如有疑问欢迎在文末留言交流,如需作者在线代码指导、定制等,在作者开启付费服务后,可以点击“购买服务”进行实时联系,请知悉,谢谢
感谢
16
手机上随时阅读、收藏该文章 ?请扫下方二维码
相似例子推荐
评论
作者
萌兔子QAQ
17
例子数量
1197
帮助
111
感谢
评分详细
可运行:
4.5
分
代码质量:
4.5
分
文章描述详细:
4.5
分
代码注释:
4.5
分
综合:
4.5
分
作者例子
微信小程序之底部弹框预约插件
微信小程序之自定义模态弹窗(带动画)实例
微信小程序条码、二维码生成模块
基于微信小程序的用户列表点赞功能
微信小程序基于scroll-view实现锚点定位
微信小程序基于swiper组件的tab切换
微信小程序Tab选项卡切换大集合
微信小程序-通知滚动小提示
微信小程序独家秘笈之左滑删除
微信小程序独家秘笈之抽奖大转盘
微信小程序-简易计算器
微信小程序开发动感十足的加载动画--都在这里!
微信小程序横版日历,tab栏
微信小程序--搜索关键词高亮
微信小程序-自定义底部导航
微信小程序-基于canvas画画涂鸦
别再@官方啦,给我一面国旗教程来袭,快来接收源码吧