JQuery:模拟球员在场上移动

发布于 2024-12-11 02:07:55 字数 177 浏览 0 评论 0原文

我正在尝试模拟在场上移动的玩家(例如,在本例中 div 元素,将玩家作为 img 元素)。我如何让 img 在开始时平稳移动,逐渐加速直到达到“最高速度”并继续这样做,除非路线的终点足够接近以完成 2再次进行初始步骤,但向后退以模拟停止。

干杯!

I'm trying to simulate a player moving on the field (e.g. div element in this case, being the player an img element). How do I go about making the img move smoothly in the beginning, progressively speeding up until it reached the "top speed" and continue to do it unless the end of the route is near enough to do the 2 initial steps again but backwards to simulate the stopping.

Cheers!

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娜些时光,永不杰束 2024-12-18 02:07:55

http://jsfiddle.net/aPNKQ/

html

 <div>Help</div>

jq

$(function (){
    $('div').animate({left: '100px'},5000);
    setTimeout(function (){
        $('div').stop(false,false).animate({left: '100px'},2000);
    },1000);
})

CSS

div{background: red; float: left;position: absolute; left: 0;}

只要有一点想象力,你就可以将速度设置为 5000、4000、动态等等...就这样:)

http://jsfiddle.net/aPNKQ/

html

 <div>Help</div>

jq

$(function (){
    $('div').animate({left: '100px'},5000);
    setTimeout(function (){
        $('div').stop(false,false).animate({left: '100px'},2000);
    },1000);
})

CSS

div{background: red; float: left;position: absolute; left: 0;}

with alittle imagination you could make the speed 5000,4000, dynamic etc... there you go :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文