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.
我想为一系列具有相同尺寸的 div 设置动画,并且我正在使用 Jquery 来取消加载时的 css top marging 以模拟 div 移动到顶部我目前有闲置的 jquery:
$(function(){ $('#some_div').animate({'margin-top': '0px'}, 1000); }); </script>
这似乎只适用于顶级 div。有没有办法创建某种循环,所以我的 jquery 会在所有具有相同名称的 div 上模拟这种效果。
您的 jQuery 选择器按 ID 指向一个项目。根据定义,ID 应该只引用一个元素。将其更改为类选择器以动画化许多项目并为它们提供相同的类。