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.
我有 3 个从右侧滑入并最终位于页面左侧的按钮,但由于某种原因,它们不会像应有的那样排列。我使用.animate({left: 100 + 'px'})了所有按钮,但left偏移量不同,因此它们在页面上对角线显示。
.animate({left: 100 + 'px'})
left
出于某种原因,他们排得很奇怪。第一个和第二个似乎对角线排列,但第三个并没有继续我想要的对角线。
小提琴
忽略我必须访问外部站点以查看相关代码的事实,您的问题的解决方案非常简单。这是一个CSS问题。
#slideWrapper #bradfordOnAvonButton { top: 60px; left: 1000px; } #slideWrapper #turleighButton { top: 30px; left: 1000px; }
交换那些tops 并且您的代码很好。
top
在旁注中,选择具有两个 ID 的按钮是多余的,因为它们已经有自己的 ID。#turleighButton足够了。
#turleighButton