如何使用键盘、AJAX 和 AJAX 将 div 移动到预定义路径jQuery

发布于 2024-11-18 17:54:33 字数 145 浏览 2 评论 0原文

您好,有什么方法可以使用键盘(例如 Enter 按钮)并将 div 移动到我之前定义的路径吗?对于路径,我的意思是向右移动一些步骤,然后向下移动,然后向左移动,等等。主要目标是使用带有按键的手动路径或带有 body onload 命令的路径。任何帮助/想法/示例都值得赞赏..

Hello is there any way to use the keyboard lets say the Enter button and move a div to a path that I defined earlier ? With path I mean for example to move some steps right, then down, then left and so on. The main goal is to use a path either amanual with keypress or with a body onload command. Any help/idea/example is appeciated..

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

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

发布评论

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

评论(1

泪意 2024-11-25 17:54:33

您可以在 div 上使用 jQuery 的 animate() 来响应按键事件。

$(document).keypress(function(e) {
    var anim_params;
    if (div in state 1) {
        anim_params = state 2 params;
    } else  if (div in state 2) {
        anim_params = state 3 params;
    } else if (...) {
        ...
    }

    $('#div_id').animate(anim_params);
});

当然,您可以用查找替换那些 if 语句,但您明白了。

You can use jQuery's animate() on the div in response to keypress events.

$(document).keypress(function(e) {
    var anim_params;
    if (div in state 1) {
        anim_params = state 2 params;
    } else  if (div in state 2) {
        anim_params = state 3 params;
    } else if (...) {
        ...
    }

    $('#div_id').animate(anim_params);
});

Of course you can replace those if statements with a lookup, but you get the idea.

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