我已经为此工作了几个小时,我就是想不通,
假设我有很多浮动的 div,并附有 jquery draggable
,所以它们的位置一直在变化。
现在我希望能够将它们垂直隔开,所以每个 div 之间的空间是相同的,最大的问题之一是每个 div 的高度也在不断变化。
每次我尝试正确地做这件事时,我只写了大约 100 行代码,我只是迷失在混乱中,也许有一些简单的方法可以做到这一点,顺便说一下,这是它的外观示例,我没有包括我的任何书面代码,因为它没有多大意义。
我已经为此工作了几个小时,我就是想不通,
假设我有很多浮动的 div,并附有 jquery draggable
,所以它们的位置一直在变化。
现在我希望能够将它们垂直隔开,所以每个 div 之间的空间是相同的,最大的问题之一是每个 div 的高度也在不断变化。
每次我尝试正确地做这件事时,我只写了大约 100 行代码,我只是迷失在混乱中,也许有一些简单的方法可以做到这一点,顺便说一下,这是它的外观示例,我没有包括我的任何书面代码,因为它没有多大意义。
看到您的问题的不同解释很有趣。当我想到垂直对齐时,我想到了 Adobe Illustrator,以及如何均匀地间隔多个选定的形状。为此,您可以这样做:
注意:这可以很容易地调整以保持元素之间的均匀间隙,无论它们各自的高度如何。
$('.align').click(function() {
// Cache the elements
var $obj = $('.obj');
// Sort them by offset top
$obj = $obj.sort(function(a, b) {
return $(a).offset().top - $(b).offset().top;
});
// Get get the offset of the first and last elements
// NOTE that we included the last element's height... you may need to tweak it
// here due to CSS borders adding to the height
var firstOffsetTop = $obj.first().offset().top;
var lastOffsetTop = $obj.last().offset().top + $obj.last().height();
// The new container height is the difference between the first,
// and last element's position
var containerHeight = lastOffsetTop - firstOffsetTop;
// Determine the gap between each element, based on the height of the container
// divided by the number of elements
var spacing = containerHeight / $obj.length;
// Assign top properties
$obj.each(function(i, el) {
$(this).css('top', (i * spacing) + firstOffsetTop + 'px');
});
});
迟到了,但这可能是另一种方法:
$('.align').click(function(){
var t = 0;
var dist = 10;
$('.obj').each(function(i,e){
t += $('.obj').eq(i-1).height() + dist;
$(this).animate({
left: $('.container').offset().left + dist,
top: t
}, 500);
});
});