返回介绍

.reverse()

发布于 2020-01-04 14:05:34 字数 2507 浏览 1234 评论 0 收藏 0

.reverse( from:*, suppressEvents:Boolean ) : *
控制动画反向播放。动画的各种表现都会反转,例如ease。

//当前位置反向播放
 myAnimation.reverse();
 
 //2秒位置反向播放
 myAnimation.reverse(2);
 
 //2秒位置反向播放,不抑制事件触发
myAnimation.reverse(2, false);
 
//动画末端反向播放
myAnimation.reverse(0);
  
//动画末端往回1秒位置反向播放
myAnimation.reverse(-1);
 
//切换方向(如果它是前进方向,则反向播放。如果是反向的,则会向前播放)
if (myAnimation.reversed()) {
    myAnimation.play();
} else {
    myAnimation.reverse();
}

返回self,方便链式设置
.reverse()适用于TweenMaxTweenLite

.reverse()的参数

参数名类型必填说明
fromNum/label动画反向播放前跳转到的时间(或TimelineLite/TimelineMax的label)如果没有定义,它将从播放头当前的位置开始反向播放。如果从最动画最末端开始播放,设置为0。如果时间基于反方向,可以设置为负数,如.reverse(-1)
suppressEventsBoolean如果true(默认值),当播放头移动到from参数中定义的新位置时,不会触发任何事件或回调。

.reverse() 示例


  





body {
	background-color: #f8f8f8;
	font-size: 16px;
}
#demo {
	width: 692px;
	height: 60px;
        background-color: #333;
	padding: 8px;
	margin-bottom: 10px;
}
.box {
	width: 50px;
	height: 50px;
	border-radius: 6px;
	margin-top: 4px;
	display: inline-block;
	position: absolute;
}
.green {
	background-color: #6fb936;
}
input[type="button"] {
	-webkit-appearance: button;
	padding: 8px;
	margin-right: 5px;
	margin-bottom: 5px;
}
box = document.getElementById("box"),
playBtn = document.getElementById("playBtn"),
reverseBtn = document.getElementById("reverseBtn"),
reverseFromBtn = document.getElementById("reverseFromBtn"),
reverseFromBtn2 = document.getElementById("reverseFromBtn2"),
reverseFromBtn3 = document.getElementById("reverseFromBtn3"),
tween = TweenLite.to(box, 6, {left:"632px", ease:Linear.easeNone});
playBtn.onclick = function() {
	//当前位置播放动画,如果动画播放完成, play() 无效
    tween.play();
}
reverseBtn.onclick = function() {
    tween.reverse();
}
reverseFromBtn.onclick = function() {
    //某时间点开始返回 (秒).
    tween.reverse(1);
}
reverseFromBtn2.onclick = function() {
    //某时间点开始返回 (秒).
    tween.reverse(-1);
}
reverseFromBtn3.onclick = function() {
    //某时间点开始返回 (秒).
    tween.reverse(0);
}

.reverse()返回值

.reverse()的补充说明

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文