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.
我有两个图像,我想在单击按钮时为它们设置动画。我希望当我单击按钮时,两个图像彼此靠近。怎么办?有人可以帮我做吗。
就像是:
$('input[type=button]').click(function() { $('#pic1').animate({left:+=50}); $('#pic2').animate({left:-=50}); });
单击按钮时,通过 jquery 或 java 获取两个元素并更改它们的位置。写下您的 HTML,以便我可以帮助您编写代码。