このコードは、ここにある他の質問の1つで見つかりました。それはまさに私が探しているものです(ドラッグ可能で、最後にクリックされたものに基づいてdivをきちんとスタックします)。ただし、div IDのサイズを変更したいのですが、コードを台無しにせずにそれを行う方法を理解することはできません。 。
$(document).ready(function() {
var a = 3;
$('#box1,#box2,#box3,#box4').draggable({
start: function(event, ui) { $(this).css("z-index", a++); }
});
$('#dragZone div').click(function() {
$(this).addClass('top').removeClass('bottom');
$(this).siblings().removeClass('top').addClass('bottom');
$(this).css("z-index", a++);
});
});