gpt4 book ai didi

javascript - 减弱 jQuery Easing 的反弹

转载 作者:行者123 更新时间:2023-12-03 11:08:08 27 4
gpt4 key购买 nike

我正在使用jQuery Easing plugin并使用反弹缓动效果。我喜欢它,但它是如此令人难以置信的激烈。我需要将其调低(可能会消除反弹并使曲线不那么剧烈。

我找到了this post ,但我其实不是数学专业的...有人能用英语帮我吗?我什至不需要完全掌握它,只要有人为我提供一个功能就可以了。

我知道我应该粘贴我尝试过的代码,但我什至不知道要尝试什么,所以我想我会发布 jQuery Easing 插件提供的缓动功能。

easeOutBounce: function (x, t, b, c, d) {
if ((t/=d) < (1/2.75)) {
return c*(7.5625*t*t) + b;
} else if (t < (2/2.75)) {
return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
} else if (t < (2.5/2.75)) {
return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
} else {
return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
}
}

最佳答案

你最好的选择是find an easing function这接近你想要的并调整持续时间。但如果您确实想做一些自定义的事情,jQuery 缓动插件可以让您使用以下函数指定计时:

jQuery.easing.newEasingMethodName (
x, // Ignored
current_time,
start_value,
end_value,
total_time
)

它会在动画的各个点被调用,并预计返回适合动画运行时间的位置。检查 easeOutBounce,您可以看到每个 if 语句将进度标准化为总时间的百分比(t/=d 代码段),并应用 4 个公式之一来得出当前值作为该百分比的函数。

问题在于,这些公式函数不是连续的 - 它们会单独“调整”,以在时间线中精确的完成百分比点处接续另一个公式函数未完成的部分。例如,在下面的代码片段中,如果您选择“step”,您将看到动画从一个位置跳到另一个位置,没有中间动画。如果您只是将一个 if 语句从 easeOutBounce 代码块中取出,就会发生这种情况 - 它会从一个步骤的结束跳到下一个步骤的开始,它被调整为在时间线的稍后部分开始,因此会导致您的动画到处跳跃。

您可以使用下面的custom函数作为起点——它只是easeOutBounce函数,经过重写以使其不那么晦涩。

祝你好运。 :)

var $div = $('#test');
var $easeMethodName = $('#method-name');
var $animationDuration = $('#animation-duration');

$('button').click(function() {
$div.toggleClass('expanded');
var width = $div.hasClass('expanded') ? 400 : 200;
var duration = parseInt($animationDuration.val(), 10);

$div.animate({
width: width
}, {
duration: duration,
easing: $easeMethodName.val()
});

});

var linear = function(ignore, t, start_value, end_value, d) {
var pct = t/d;
return pct * end_value;
};
$.easing.linear = linear;

var step = function(ignore, t, start_value, end_value, d) {
var pct = t/d * 100;
var step = Math.round(pct / 25);
return (step * .25) * end_value + start_value;
};
$.easing.step = step;

// This is the eastOutBounce function, rewritten to make it a little
// easier to read. Use it as a starting point for modification.
// t is the current time; d is the duration of the animation
var custom = function(ignore, t, start_value, end_value, d) {
var pct = t/d;
var step1 = 1/2.75; // ~36%
var step2 = 2/2.75; // ~73%
var step3 = 2.5/2.75; // ~90%

if (pct < step1) {
return end_value*(7.5625*pct*pct) + start_value;
} else if (pct < step2) {
return end_value*(7.5625*(pct-=(1.5/2.75))*pct + .75) + start_value;
} else if (pct < step3) {
return end_value*(7.5625*(pct-=(2.25/2.75))*pct + .9375) + start_value;
} else {
return end_value*(7.5625*(pct-=(2.625/2.75))*pct + .984375) + start_value;
}
};
$.easing.custom = custom;
#test {
width: 200px;
height: 20px;
border: 1px solid #900;
background: #ccc;
position: relative;
margin-top: 1em;
}

label, button {
display: block;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>

<label>Method name:
<select id="method-name">
<option value="linear">Linear</option><option value="step">Step</option><option value="custom">Custom</option><option value="easeInOutBounce">easeInOutBounce</option>
</select>
</label>

<label>Duration:
<input id="animation-duration" value="1000" />
</label>

<button>Animate</button>

<div id="test">
</div>

关于javascript - 减弱 jQuery Easing 的反弹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27743407/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com