.用曲线制作动画

问题描述 投票:0回答:3

先看一下:

enter image description here

猫需要移动到曲线中的x。 (见箭头)

当猫击中 x 时,应停留 10 秒,之后猫应返回 o,再次呈曲线状,然后重复。

我用这段代码尝试过:

function curve() {
    $('#cat').delay(10000).animate({top: '-=20',left: '-=20'}, 500, function() {
        $('#cat').delay(10000).animate({top: '+=20', left: '+=20'}, 500, function() {
            curve();
        });
    });
}

curve();

但是猫是这样动的:

enter image description here

有没有办法让猫按照这种曲线移动?

javascript jquery html jquery-animate curve
3个回答
1
投票

您可以通过进行复合运动来使用缓动来实现这一点:

function curve () {
    $('#cat').delay(10000).animate({top: "+=20px", left: "+=20px"}, {
      duration: 500, 
      specialEasing: {top: 'easeOutQuad', left: 'easeInQuad'}, 
      complete: function () { 
        $('#cat').animate({top: "-=20px", left: "+=20px"}, {
          duration: 500, 
          specialEasing: {top: 'easeInQuad', left: 'easeOutQuad'},
          complete: function() {
            // repeat the other way around.
          }});
      }
    });
}

它从 jQuery 1.4 开始工作,根据 jQuery 文档 和提到的缓动需要 jQuery UI(但仅限于 Effect Core 模块)。每个

.animate()
调用占整圆路径的四分之一,而反向
easeInQuad
easeOutQuad
使路径看起来像圆形路径,而不是直接到达新位置。


1
投票

http://tympanus.net/codrops/2010/05/07/stunning-circular-motion-effect/

通过谷歌搜索“jquery Radial Motion”找到了这个


0
投票

2021 年的现代答案。您不必为此使用 jQuery。但我假设你愿意。您可以将流行的 npm 库(例如 popmotion)(每周 60 万次下载)与 jQuery 结合使用,如下所示:

// poo.el.animate({top: footerTop - horsePooHeight})

// your imports may vary - I'm using Angular, popmotion focuses more on Vue and React
import { cubicBezier } from 'popmotion'
declare const popmotion: any
const {tween, easing} = popmotion

const fling = cubicBezier(0, .42, 0, 1)
tween({from: 100, to: 200, duration: 400, ease: fling}).start((v) => $(el).css('top', v))
tween({from: 100, to: 300, duration: 400, ease: easing.linear}).start((v) => $(el).css('left', v))

其中 el 是 jQuery 元素。

好消息。它在宽松、允许曲线方面拥有更大的权力。坏消息是它有点复杂,但如果你能理解上面的代码,那就没问题了。

PS 我并不是说 popmotion 应该与 jQuery 一起使用。我只是说可以。

PPS 永远不要忘记 J-E-S-U-S 爱你 :D

PPPS jQuery 适合更简单的动画,但是对此类问题缺乏兴趣以及缺乏 jQuery 动画库的更新证明 jQuery 本身对于更复杂的动画来说已经死了。

© www.soinside.com 2019 - 2024. All rights reserved.