我正在尝试创建一个功能,允许用户拖动 div 框,然后使用样式更新数据库,这样当他们回到页面时,它会记住他们的位置并将框放在正确的位置(相对于父 div )。
我目前有这个工作,但是,如果用户使用 1600 像素的屏幕宽度定位框,然后在他们的 iPad 或较小的屏幕尺寸(例如 1000 像素)上打开页面,那么如果它们的位置太靠近父边界。
我需要一些帮助来弄清楚如何在父级内部排列 div 框,但是当它们转到不同的屏幕尺寸时,它会变得非常灵活,这些框仍然会在那里。
我创建了一个 jsfiddle 来模拟这种情况。
HTML代码:
<div id="dashboard_wrapper">
<div class="ui-corner-all border_all_grey dashboard_widget drag_drop">
Box 1
</div>
<div class="ui-corner-all border_all_grey dashboard_widget drag_drop">
Box 2
</div>
</div>
<div id="box_positions"></div>
和JS代码:
$(".drag_drop, .drag_drop_chart").resizable();
$(".drag_drop, .drag_drop_chart").draggable({
start: function( event, ui ) {$(this).trigger("click")},
stop: function ( event, ui ) {
var position = $(this).position();
var offset = $(this).offset();
var top = position.top;
var left = position.left;
var max_top = 0;
if(top < 0){ $(this).css({"top":1}); }
if(left < 0){ $(this).css({"left":1}); }
if(top > 800){ $(this).css({"top":800}); }
$(".drag_drop, .drag_drop_chart").each(function() {
//Find the box with the largest "top" value
var x_top = $(this).position().top;
if(max_top < x_top){ max_top = x_top; }
});
var height = max_top + 280;
$("#dashboard_wrapper").css({"height":height});
var style = $(this).attr("style");
var box = $(this).text();
$("#box_positions").append(box + ": style=" + style + "<br/>");
}
});
var boxes = $(".drag_drop, .drag_drop_chart");
// Set up click handlers for each box
boxes.click(function() {
var el = $(this), // The box that was clicked
max = 0;
// Find the highest z-index
boxes.each(function() {
// Find the current z-index value
var z = parseInt( $( this ).css( "z-index" ), 10 );
if ( isNaN(z) ){ z = 1; }
// Keep either the current max, or the current z-index, whichever is higher
max = Math.max( max, z );
});
// Set the box that was clicked to the highest z-index plus one
el.css("z-index", max + 1 );
});
任何帮助和想法将不胜感激。提前致谢