需要为图像设置动画以在每次鼠标悬停时远离光标位置?
我正在尝试通过更改鼠标悬停时的位置来为盒子的图像设置动画。
我可以让它移动一次,但我需要对其进行设置,以便每次有人将鼠标悬停在图像上时它都会移动。我想让用户“追逐”屏幕周围的框。
动画最好是循环播放,这样用户就永远无法捕捉到图像?
这是我到目前为止所拥有的示例,下面是我的 jQuery 代码:
$(document).ready(function() {
$('#img').mouseover(function() {
$(this).animate({
left: '500px'
});
});
});
万分感谢!
I'm trying to animate an image of a box by changing it's position on mouseover.
I can get it to move once but I need to set it up so that it moves everytime someone mouses over the image. I want to make the users 'chase' the box around the screen.
Preferably the animation would loop so that a user can never catch the image ?
Here is an example of what I have so far, and below is my jQuery code:
$(document).ready(function() {
$('#img').mouseover(function() {
$(this).animate({
left: '500px'
});
});
});
Thanks a million!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个示例。我想它涵盖了基础知识。
Here is an example. It covers basics I guess.