1、利用样式实现小程序动画(用法和css用法相识)
wxml 文件
<image class="aniamtion" src="../../images/page4.jfif" style="width:200rpxheight:200rpx position: relative"></image>
wxss文件
.aniamtion {
animation: mymove 5s infinite
/* //infinite属性是表示无限循环的意思,没有这个属性的话动画只执行一次。 */
}
@keyframes mymove {
from {
/* left: 0px*/
/* transform: rotate(7deg) skew(50deg) translate(30rpx,30rpx)*/
transform: rotate3d(100,200,300,0deg)
}
to {
/* left: 200px*/
/* transform: rotate(7deg) skew(5deg) translate(100rpx,100rpx)*/
transform: rotate3d(200,300,400,360deg)
}
}
2、 用小程序的API来实现动画
用wx.createAnimation(object) 来创建一个动画 -->返回一个animation对象
创建一个动画实例 animation。
onReady: function () {
this.animation = wx.createAnimation({
duration:1000,
timingFunction:'linear',
delay:100,
transformOrigin:"left top 0"
})
},
调用实例的方法来描述动画。
Animation.step() 表示一组动画的完成,可以在一组动画中调用任意多个动画方法,一组动画中的所有动画会同时开始,一组动画完成后才会进行下一组动画
rotate(){
this.animation.rotate(150).step() //对动画进行简单的描述
this.setData({
animation:this.animation.export()
})
},
最后通过动画实例的 export 方法导出动画数据传递给组件的 animation 属性。
this.animation.export() 导出动画队列。export 方法每次调用后会清掉之前的动画操作
rotate(){
this.animation.rotate(150).step() //对动画进行简单的描述
this.setData({ // 在setData({}) 导出动画数据数据给组件
animation:this.animation.export()
})
},
完整的wxml
<view class="container">
<view animation="{{animation}}" class="view">
将做动画的块
</view>
</view>
<button type="default" size="mini" bindtap="rotate">
旋转
</button>
完整的wxjs
Page({
data: {
animation:''
},
onReady: function () {
this.animation = wx.createAnimation({
duration:1000,
timingFunction:'linear',
delay:100,
transformOrigin:"left top 0"
})
},
rotate(){
this.animation.rotate(150).step().translate(100).step()
this.setData({
animation:this.animation.export()
})
}
})
3、用选择器来绑定组件来来实现组件的动画(小程序2.9.0 的库可用,版本不够会报this.animate不是一个方法)
<text>pages/index7/index7.wxml</text>
<view id="container" style="height: 100pxwidth: 100pxbackground-color: blue">
container
</view>
<view class="block" style="height: 100pxwidth: 100pxbackground-color: #ccc">
block
</view>
用选择器选择相应的组件进行相应的动画
进行关键帧的处理
onLoad: function () {
this.animate('#container', [
{ opacity: 1.0, rotate: 0, backgroundColor: '#FF0000' },
{ opacity: 0.5, rotate: 45, backgroundColor: '#00FF00' },
{ opacity: 1.0, rotate: 90, backgroundColor: '#FF0000' },
], 5000)
this.animate('.block', [
{ scale: [1, 1], rotate: 0, ease: 'ease-out' },
{ scale: [1.5, 1.5], rotate: 45, ease: 'ease-in'},
{ scale: [2, 2], rotate: 90 },
], 5000)
},
}
4、用第三方的库 animation.css
需要做的有
从https://daneden.github.io/animate.css/下载css动画文件
把 .css 文件 改名成 .wxss文件(可进行相应的需改,毕竟小程序的大小限制摆在那里)
把它引入到你的app.wxss文件中
@import “动画文件的相对目录”
在用的时候把他和你的样式绑定
<view class="swing" style="height: 100pxwidth: 100pxbackground-color: #ccc">
block
</view>
// 给类名为swing 的文件绑定swing 的动画
.swing{
animation: swing 5s infinite
}
你网页不能 内容太多,太多加载慢不说,间接影响动画效果,还有就是用到图片的话最好压缩到最小,提高流畅度;
样式简化,最好不要用E F,E>F等后代样式,最好就是一个类直接写一个样式,因为样式的解析是从右往左,你前面多加一个后缀就多解析一次
<script type="text/javascript">
!function(e,t){var i=e.documentElement,n="orientationchange"in window?"orientationchange":"resize",a=navigator.userAgent.match(/iphone|ipad|ipod/i),d=function(){var e=i.clientWidth,t=i.clientHeighte&&(750<=e&&(e=750),i.style.fontSize=e/750*100+"px",i.dataset.percent=e/750*100,i.dataset.width=e,i.dataset.height=t)}d(),a&&e.documentElement.classList.add("iosx"+t.devicePixelRatio),e.addEventListener&&t.addEventListener(n,d,!1)}(document,window)
</script>
(设计稿尺寸为750)
--- getToken()为定义的方法名称:
安卓 :window.native.方法名()
eg:
TOKEN = window.native ? window.native.getToken() : ''
appVersion = window.native ? window.native.getAppVersionName() : ''
uuid = window.native ? window.native.getUUId() : ''
phoneModel = window.native ? window.native.getPhoneModel() : ''
clientId = window.native ? window.native.getClientId() : ''
ios :window.webkit.messageHandlers.方法名.postMessage(null)
eg: 如果没有参数 要写上null
window.webkit.messageHandlers.getToken.postMessage(null)
window.webkit.messageHandlers.getClientId.postMessage(null)
window.webkit.messageHandlers.getPhoneModel.postMessage(null)
window.webkit.messageHandlers.getUUId.postMessage(null)
window.webkit.messageHandlers.getAppVersionName.postMessage(null)
--- 引用vconsole.js
<script src="https://cdn.bootcss.com/vConsole/3.3.0/vconsole.min.js"></script>
<script type="text/javascript">
var vConsole = new VConsole()
</script>
(app上可查看log network 相关信息展示)
4.1 --- alert localStorage相关属性失效
查找原因:console.log(window) 打印查看APP里没有相关属性
解决办法:
寻找app相关人员 加上相关属性。
或者如果有时间原因可以尝试(不一定都适用):
alert换成原生自己写的弹框展示
localStorage换成全局变量
4.2 --- 使用fullpage.js插件 app里页面空白 浏览器查看页面正常
原因:fullpage.js全屏插件设置html body 高度100% 而APP里面设置高度为依据h5页面高度 导致h5嵌套进去 高度为0 页面自然空白
解决办法:
1:app修改设置 参考回答: https://stackoverflow.com/questions/32729416/html-height-100-ignored-by-webview
2:h5 初始化插件之后 再设置html body高度为100%, body等元素背景图片
eg:
$('#fullPage').fullpage({})
$('html').css('height',window.innerHeight)
$('html').css('width',window.innerWidth)
$('html').css({'background':'url(https://zhuoyou-shop.oss-cn-hangzhou.aliyuncs.com/static/lottery/img/bk.jpg) no-repeat center','background-size':'cover'})
$('body').css('height',window.innerHeight)
$('body').css('width',window.innerWidth)
--- 页面在向下滚动的时候,有些元素会产生细小的动画效果。虽然动画比较小,但却能吸引浏览者的注意,使页面更吸人眼球。
--- WOW.js 依赖animate.css,所以它支持 animate.css 多种的动画效果,能满足各种需求。
--- IE6、IE7 等老旧浏览器不支持 CSS3 动画,所以没有效果;而 wow.js 也使用了 querySelectorAll 方法,IE 低版本会报错。为了达到更好的兼容,最好加一个浏览器及版本判断。
使用方法:
1、引入文件
<link rel="stylesheet" href="css/animate.min.css">
2、HTML
<div class="wow slideInLeft"></div>
<div class="wow slideInRight"></div>
可以加入 data-wow-duration(动画持续时间)和 data-wow-delay(动画延迟时间)属性,如:
<div class="wow slideInLeft" data-wow-duration="2s" data-wow-delay="5s"></div>
<div class="wow slideInRight" data-wow-offset="10" data-wow-iteration="10"></div>
3、JavaScript
new WOW().init()
如果需要自定义配置,可如下使用:
var wow = new WOW({
boxClass: 'wow', //‘wow’需要执行动画的元素的 class
animateClass: 'animated', //‘animated’animation.css 动画的 class
offset: 0, //0距离可视区域多少开始执行动画
mobile: true, //true是否在移动设备上执行动画
live: true //true异步加载的内容是否有效
})
wow.init()
一个 demo 尝试:
是要引入animate.css和wow.js的
html :
<ul class="list2">
<li class="wow fadeInLeft animated"></li>
<li class="wow fadeInRight animated" data-wow-delay="0.3s"></li>
<li class="wow fadeInLeft animated" data-wow-delay="0.6s"></li>
<li class="wow fadeInRight animated" data-wow-delay="0.9s"></li>
</ul>
<ul class="ft-service">
<li class="wow fadeInUpBig animated"></li>
<li class="wow fadeInUpBig animated" data-wow-delay="0.3s"></li>
<li class="wow fadeInUpBig animated" data-wow-delay="0.6s"></li>
<li class="wow fadeInUpBig animated" data-wow-delay="0.9s"></li>
<li class="wow fadeInUpBig animated" data-wow-delay="1.2s"></li>
</ul>
css :
ul{
width: 1200px
overflow: hidden
}
.list2{
width: 760px
display: flex
justify-content: space-between
flex-wrap: wrap
}
.list2 .wow{
display: inline-block
width: 50%
height: 560px
background-image: url(https://cdn.dowebok.com/131/images/i2/list2-5.jpg)
}
.ft-service .wow {
display: inline-block
width: 236px
height: 125px
background-image: url(https://cdn.dowebok.com/131/images/i2/ft-service.png)
background-repeat: no-repeat
}
js :
<script type="text/javascript">
var wow = new WOW({
boxClass: 'wow',
animateClass: 'animated',
offset: 0,
mobile: true,
live: true
})
wow.init()
</script>
这样就有了一个可以自己发挥的动画效果了。
就是一个比较方便的进入 或者 滚动 的时候的页面的加载动画了,可以随意加入自己想要的动画。
animate.css也可以与别的插件结合使用 比如 fullpage.js都是可以有这种页面进入 滚动时候加入动画的效果。
fullpage.js 与 animate.css 实现的动画效果:
demo :
也是要引入相关文件 fullpage.js fullpage.css animate.css
HTML :
<div id="fullPage">
<div class="section">
<h3 id="p1" class="display">第一屏</h3>
</div>
<div class="section">
<h3 id="p2" class="display" onclick="getNext()">向上滑动</h3>
</div>
<div class="section">
<h3 id="p3" class="display">第三屏</h3>
</div>
<div class="section">
<h3 id="p4" class="display">第四屏</h3>
<p id="p5" class="display">这是最后一屏</p>
<p id="p6" class="display" onclick="getTop()">返回首屏</p>
</div>
</div>
css :
.section { text-align: centerfont: 50px "Microsoft Yahei"color: #fff}
.section p{font: 30px "Microsoft Yahei"}
.display{display: none}
.display1{display: block}
JS :
<script>
$(function(){
$('#fullPage').fullpage({
sectionsColor: ['#1bbc9b', '#4BBFC3', '#7BAABE', '#f90'],
//滚动到某一屏后
afterLoad: function(anchorLink, index){
if(index == 1){
$('#p1').addClass('animate__animated animate__bounceInLeft display1')
}
if(index == 2){
$('#p2').addClass('animate__animated animate__bounceInLeft display1')
}
if(index == 3){
$('#p3').addClass('animate__animated animate__bounceInLeft display1')
}
if(index == 4){
$('#p4').addClass('animate__animated animate__bounceInLeft display1')
$('#p5').addClass('animate__animated animate__bounceInLeft animate__delay-1s display1')
$('#p6').addClass('animate__animated animate__bounceInLeft animate__delay-2s display1')
}
},
onLeave: function(index, direction){
if(index == '1'){
$('#p1').removeClass('animate__animated animate__bounceInLeft display1')
}
if(index == '2'){
$('#p2').removeClass('animate__animated animate__bounceInLeft display1')
}
if(index == '3'){
$('#p3').removeClass('animate__animated animate__bounceInLeft display1')
}
if(index == '4'){
$('#p4').removeClass('animate__animated animate__bounceInLeft display1')
$('#p5').removeClass('animate__animated animate__bounceInLeft animate__delay-1s display1')
$('#p6').removeClass('animate__animated animate__bounceInLeft animate__delay-2s display1')
}
}
})
})
//跳转到某一屏
function getNext(){
$.fn.fullpage.moveTo(3)
}
//没有动画的跳转到首屏
function getTop(){
$.fn.fullpage.silentMoveTo(1)
}
</script>
这样的话 也有和wow.js类似的效果
都是页面进入 和 滚动时候 给元素加入动画效果。