- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在研究命运之轮,它通过 node.js 和 websockets 同步到每个连接的设备。但是我想切断动画的开始,当用户加入时轮子已经在旋转了,所以它只会显示动画的最后几秒而不改变它的缓动。
jQuery 动画由一个简单的步进动画组成,它使轮子旋转。我已经尝试更改该步骤的“fx”对象的参数,例如 fx.start
或 fx.pos
。虽然 fx.start
只是动画开始时的变量,例如 180 度,而 fx.pos
只是一种输出参数,用于将某些内容更改为给定的动画中的时间,比如文字颜色之类的。然而,fx.pos
的值既不能更改,也不能更改动画当前设置的位置。我创建了一个函数来旋转命运之轮两次,然后它在给定的度数处停止。
我还尝试更改缓动,使其为 50% 线性,50% 摆动,但这使动画看起来很垃圾,因为起初它以恒定速度旋转,然后突然旋转得更快而不是更慢。
function spinRoulette(deg, duration = 10000) {
deg = Math.round(deg);
$("img.roulette").animate(
{ now: '+='+(720+deg-getRotation()) }, {
duration: duration,
...
step: function(now, fx) {
if(now >= 360)
now -= 360;
$(this).css("transform", "rotate("+now+"deg)");
}
});
}
如果持续时间少于 10 秒,动画的开始将被切断。因此,如果服务器在大约 5 秒前旋转了轮子,我的动画的前 5 秒应该被 chop 。
最佳答案
t
从 0
到 1
,或从 0.N
到 1.0
(如果玩家在第 6 秒加入则为 0.6,最大值为 10)$({t: t}).animate({t: 1},
t_now
值)转换为相应的缓动 e_now
值使用自定义缓动函数e_now
结果乘以所需的 end 度数不使用 “swing”
使用 “linear”
并且让我们控制缓动和时间使用自定义缓动函数(您可以找到许多缓动片段 online )。假设我们喜欢 easeInOutSine
:
const easeInOutSine = t => -(Math.cos(Math.PI * t) - 1) / 2;
示例有 4 个人,一个人转动方向盘,另一个人在初始转动开始后的 2、4.5 和 8.7 秒加入表演:
const easeInOutSine = t => -(Math.cos(Math.PI * t) - 1) / 2;
function spinRoulette(sel, deg, duration = 10000) {
const $el = $(sel);
const maxDuration = 10000;
const deg_end = 720 + Math.round(deg); // 2 revolutions + server-generated degrees
const time = maxDuration - duration; // Start time in ms
const t = time / maxDuration; // Start time to 0.0-1.0 range
$({t: t}).animate({t: 1}, { // Custom jQuery anim. from 0.N to 1.0
duration: duration,
easing: "linear", // We need a linear 0.0 to 1.0
step: function(t_now) {
const e_now = easeInOutSine(t_now); // Current easing
const deg_now = e_now * deg_end; // Current degrees
$el.css({transform: `rotate(${ deg_now }deg)`});
}
});
}
// Person 1 spins!
spinRoulette("#r1", 45);
// Person 2 joins the room after 2s
setTimeout(() => spinRoulette('#r2', 45, 10000 - 2000), 2000);
// Person 3 joins the room after 4.5s
setTimeout(() => spinRoulette('#r3', 45, 10000 - 4500), 4500);
// Person 4 joins the room after 8.7s
setTimeout(() => spinRoulette('#r4', 45, 10000 - 8700), 8700);
img {height: 120px; display: inline-block;}
<img id="r1" src="/image/bScK3.png">
<img id="r2" src="/image/bScK3.png">
<img id="r3" src="/image/bScK3.png">
<img id="r4" src="/image/bScK3.png">
<script src="//code.jquery.com/jquery-3.4.1.min.js"></script>
在上面的示例中,最后,您可以注意到(除了一些奇怪的视觉错觉)车轮在任何时间点以正确的旋转状态、速度 catch ,并且全部完成同时使用相同的缓动,在精确预定义的 deg_end
度数。
关于javascript - 为多个用户同步正在进行的轮盘动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58794004/
在 HTML5 中模拟旋转轮盘的最佳方法是什么? 轮子的旋转应该可以通过一些输入来控制(即,基于一些用户输入的旋转速度)。轮子旋转得越快,轮子上的标签应该越模糊,但随着转速变慢,轮子上的标签变得越来越
我是一名优秀的程序员,十分优秀!