.pause()
优质
小牛编辑
129浏览
2023-12-01
.pause( atTime:*, suppressEvents:Boolean ) : *
暂停动画,可选择跳转到特定时间。
如果suppressEvents保持默认状态并跳到新的时间点,那么之前在新旧时间点之间设置的回调或函数不会被触发,相当于跳过了那些时间点。如果想触发,设为false。
//暂停动画
myAnimation.pause();
//跳转到第2秒并暂停动画
myAnimation.pause(2);
//跳转到第2秒并暂停动画,并且不抑制事件和函数触发
myAnimation.pause(2, false);
返回self,方便链式调用
.pause()适用于TweenMaxTweenLite
.pause()的参数
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
atTime | Num/label | 否 | 默认为null,动画暂停之前跳到的时间(或TimelineLite/TimelineMax的label)如果没有定义,它就在当前的位置暂停 |
suppressEvents | Boolean | 否 | 如果true(默认值),当播放头移动到atTime参数中定义的新位置时,不会触发任何事件或回调。 |
.pause() 示例
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"),
pauseBtn = document.getElementById("pauseBtn"),
resumeBtn = document.getElementById("resumeBtn"),
reverseBtn = document.getElementById("reverseBtn"),
playFromBtn = document.getElementById("playFromBtn"),
reverseFromBtn = document.getElementById("reverseFromBtn"),
seekBtn = document.getElementById("seekBtn"),
timeScaleSlowBtn = document.getElementById("timeScaleSlowBtn"),
timeScaleNormalBtn = document.getElementById("timeScaleNormalBtn"),
timeScaleFastBtn = document.getElementById("timeScaleFastBtn"),
restartBtn = document.getElementById("restartBtn"),
tween = TweenLite.to(box, 6, {left:"632px", ease:Linear.easeNone});
playBtn.onclick = function() {
//当前位置播放动画,如果动画播放完成, play() 无效
tween.play();
}
pauseBtn.onclick = function() {
tween.pause();
}
resumeBtn.onclick = function() {
//当前位置继续动画.
tween.resume();
}
reverseBtn.onclick = function() {
tween.reverse();
}
playFromBtn.onclick = function() {
//某时间点开始播放(秒).
tween.play(5);
}
reverseFromBtn.onclick = function() {
//某时间点开始返回 (秒).
tween.reverse(1);
}
seekBtn.onclick = function() {
//跳到特定时间 (秒)
tween.seek(3);
}
timeScaleSlowBtn.onclick = function() {
//减速.
tween.timeScale(0.5);
}
timeScaleNormalBtn.onclick = function() {
//恢复速度.
tween.timeScale(1);
}
timeScaleFastBtn.onclick = function() {
//加速.
tween.timeScale(2);
}
restartBtn.onclick = function() {
//重新开始.
tween.restart();
}