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.
我在 html 中有带有以下代码的菜单项:
http://jsfiddle.net/hzHJj/
当您将鼠标移到上方div#heli或div#reflection_heli我需要它同时上下移动div#heli时div#heli_reflection。我设法让它一次只移动一个 div 或以相同的方式移动 2 个 div。
div#heli
div#reflection_heli
div#heli_reflection
您需要使用包装器元素,您现有的 li 很好。当它处于悬停状态 ( li:hover) 时,对 #heli 和 #heli_reflection 进行更改
li:hover
http://jsfiddle.net/sJYWr/