我有相当大的JQuery可排序portlet。它们位于一列中,2个portlet将超出页面底部。当我尝试移动portlet时,页面抖动非常严重,很难看到我丢弃portlet的位置。我在使用IE8的xp上。下面是我的jQuery代码。
$('.sort').sortable(
{
placeholder: 'portlet-placeholder',
helper: 'clone',
cursor: 'move',
scroll: true,
handle: ".portlet_topper",
start: function (event, ui) {
ui.placeholder.height(ui.helper.height());
}
}
)