我一直在研究这个问题几个小时,我只是想不出来,
假设我有很多div,周围有jquery draggable
,所以他们的位置一直在变化。
现在我希望能够将它们垂直分开,所以每个div之间的空间是相同的,最大的问题之一就是每个div的高度也在不断变化。
每次我尝试做正确的时候我只是写了~100行代码我只是迷茫地迷失了,也许有一些简单的方法可以做到这一点,顺便说一下,这里是它的样子的例子,我不包括我的任何书面代码,因为它没有多大意义。
答案 0 :(得分:1)
看到你问题的不同解释很有意思。当我想到垂直对齐时,我会想到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');
});
});
答案 1 :(得分:0)
迟到但这可能是另一种方法:
$('.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);
});
});