3

jQuery を使用して、右側 (東) のハンドルでサイズ変更も可能な水平方向に並べ替え可能な要素のセットを作成しています。問題は、要素のサイズを変更した後、水平位置を移動すると、移動中に要素がページの上部にジャンプすることです。

HTML

<div id="spacer"></div>
<div id="box">
    <div id="list">
        <div class="resize">ONE</div>
        <div class="resize">TWO</div>
        <div class="resize">THREE</div>
    </div>
</div>

ジャバスクリプト

$(function() {
    $('#list').disableSelection().sortable({
        scroll: true,
        placeholder: 'placeholder',
        containment:'parent',
        axis: 'x'
    });
    $('.resize').resizable({
            handles: 'e'
         });
});

CSS

#spacer {height: 100px}
#box {
    height: 40px;
    width: 500px;
    float: left;
}

#list {
    background-color:blue;
    white-space:nowrap;
    overflow-x:scroll;
    overflow-y:hidden;
}
.resize {
    background-color:darkgray;
    height:40px;
    width:100px;
    cursor:move;
    display:inline-block;
}
.placeholder {
    display:inline-block;
    height: 1px !important;
}


.ui-resizable-handle {
 height:15px;  
 width: 20px; 
    background-color:red;
    cursor: pointer;
}

私は何を間違っていますか?jsFiddle はこちらです。

4

2 に答える 2

1

コードから "axis:x" を削除し
、jquery の部分を次のように変更します。

$(function () {
    $('#list').sortable({
        scroll: true,
        placeholder: 'placeholder',
        containment: 'parent',
        //axis: 'x'
    });
    $('#list').disableSelection();
    $('.resize').resizable({
        handles: 'e'
    });
});
于 2013-01-30T08:59:22.650 に答える
0

axis の値が定義されている場合、アイテムは水平方向または垂直方向にのみドラッグできます。可能な値: "x"、"y"。私は100%確信が持てませんが、あなたの場合、要素のサイズ変更と競合しています。

軸を削除するか、試してください

axis: 'xy'
于 2013-01-30T10:20:09.357 に答える