Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚开始学习 javascript 和 jQuery,需要一些帮助。我试图让一张图片从页面底部(查看器窗口)开始,并在页面对角线到顶部设置动画或幻灯片(或任何其他效果 - 我现在不太了解)......
该示例是对角线到达页面顶部的蜘蛛。知道我可以使用什么类型的 javascript/jQuery 函数。任何帮助将不胜感激。谢谢!
看animate功能。
animate
可以很简单:
$('img').animate({'left': '+=500px', 'top': '-=500px'});