如何使用键盘、AJAX 和 AJAX 将 div 移动到预定义路径jQuery
您好,有什么方法可以使用键盘(例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 div 上使用 jQuery 的 animate() 来响应按键事件。
当然,您可以用查找替换那些 if 语句,但您明白了。
You can use jQuery's animate() on the div in response to keypress events.
Of course you can replace those if statements with a lookup, but you get the idea.