jQuery 或 Javascript 动画

发布于 2024-12-09 18:57:31 字数 181 浏览 0 评论 0原文

我刚刚开始学习 javascript 和 jQuery,需要一些帮助。我试图让一张图片从页面底部(查看器窗口)开始,并以动画或幻灯片(或任何其他效果 - 我目前不太了解)对角线穿过页面到顶部...

该示例是一只蜘蛛沿对角线移动到页面顶部。知道我可以使用什么类型的 javascript/jQuery 函数。任何帮助将不胜感激。谢谢!

I'm just beginning learning javascript and jQuery and need some help. I am trying to get a picture to start at the bottom of the page (of the viewers window) and animate or slide (or any other effect - I am not too knowledgable at this point) diagonally across the page to the top...

The example is a spider diagonally going to the top of the page. Any idea of what type of javascript/jQuery function I can use. Any help would be super appreciated. Thanks!

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

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

发布评论

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

评论(1

蒗幽 2024-12-16 18:57:31

查看 animate 函数

可以很简单:

$('img').animate({'left': '+=500px', 'top': '-=500px'});

Look at the animate function.

Could be as simple as:

$('img').animate({'left': '+=500px', 'top': '-=500px'});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文