返回介绍

.restart()

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

.restart( includeDelay:Boolean, suppressEvents:Boolean ) : *
重新开始动画/重头开始。

//略去delay马上重新开始
myAnimation.restart();
 
//包含delay重新开始,并且不抑制事件触发
myAnimation.restart(true, false);

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

.restart()的参数

参数名类型必填说明
includeDelayBoolean设置重新开始动画时是否包含延迟(如果有),例如动画 new TweenLite(mc, 2, {x:100, delay:1});
当你restart(),他会略过delay马上开始。如果是restart(true),则会有1秒的延迟。默认false。
suppressEventsBoolean如果true(默认值),当播放头移动到新位置时,不会触发任何事件或回调。

.restart() 示例


  


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"),
restartBtn = document.getElementById("restartBtn"),
restartBtn2 = document.getElementById("restartBtn2"),
tween = TweenLite.to(box, 6, {left:"632px",delay:2});
restartBtn.onclick = function() {
    //重新开始.
    tween.restart();
}
restartBtn2.onclick = function() {
    //重新开始.
    tween.restart(true);
}

.restart()返回值

.restart()的补充说明

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

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

发布评论

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