現在、ドロップ可能、ドラッグ可能、および並べ替え可能な機能をすべて同時に組み合わせる必要がある機能に取り組んでいます。以下は私のテストコードです。このコードの jsfiddle を取得できなかったため、申し訳ありません。ドロップ可能およびドラッグ可能は正常に機能しています。
問題: ドロップ可能な div 内で水平方向の並べ替えを行うのに苦労しています。要素が1番目、2番目などの位置にあるかどうかにかかわらず、ソートされたリスト内の要素のインデックス/位置とともに、誰かがそれを取得するのを手伝ってくれたり、案内してくれたりしてくれれば幸いです。
HTML:
<ul id="gallery" class="gallery ui-helper-reset ui-helper-clearfix">
<li class="ui-widget-content ui-corner-tr">
<div class="ui-widget-header">High Tatras 1</div>
</li>
<li class="ui-widget-content ui-corner-tr">
<div class="ui-widget-header">High Tatras 2</div>
</li>
<li class="ui-widget-content ui-corner-tr">
<div class="ui-widget-header">High Tatras 3</div>
</li>
<li class="ui-widget-content ui-corner-tr">
<div class="ui-widget-header">High Tatras 4</div>
</li>
</ul>
<div id="trash" class="ui-widget-content ui-state-default">
<ul id = "sortable" class='gallery ui-helper-reset sortable'></ul>
</div>
上記は、テスト データとして使用している HTML コードです。
JQuery: 以下は、私が現在使用している Jquery コードです。
var $gallery = $( "#gallery" ),
$trash = $( "#trash" );
// let the gallery items be draggable
$( "li", $gallery ).draggable({
cancel: "a.ui-icon", // clicking an icon won't initiate dragging
revert: "invalid", // when not dropped, the item will revert back to its initial position
containment: "document",
helper: "clone",
cursor: "move"
});
// let the trash be droppable, accepting the gallery items
$trash.droppable({
accept: "#gallery > li",
activeClass: "ui-state-highlight",
drop: function( event, ui ) {
addToContainer( ui.draggable );
}
});
// let the gallery be droppable as well, accepting items from the trash
$gallery.droppable({
accept: "#trash li",
activeClass: "custom-state-active",
drop: function( event, ui ) {
RemoveFromContainer( ui.draggable );
}
});
function addToContainer( $item ) {
$item.fadeOut(function() {
var $list = $( "ul", $trash );
$item.appendTo($list).fadeIn(function() {
$item
.addClass('ui-state-default')
.find( "div .ui-widget-header" )
.animate({ height: "36px"});
});
});
$( ".sortable" ).sortable({
connectWith: "#sortable"
}).disableSelection();
}
function RemoveFromContainer( $item ) {
$item.fadeOut(function() {
$item
.find( "a.ui-icon-refresh" )
.remove()
.end()
.css( "width", "96px")
.find( "img" )
.css( "height", "72px" )
.end()
.appendTo( $gallery )
.fadeIn();
});
}
// resolve the icons behavior with event delegation
$( "ul.gallery > li" ).click(function( event ) {
var $item = $( this ),
$target = $( event.target );
if ( $target.is( "a.ui-icon-trash" ) ) {
addToContainer( $item );
} else if ( $target.is( "a.ui-icon-refresh" ) ) {
RemoveFromContainer( $item );
}
return false;
});
不足しているものがあり、正しい質問を投稿できなかった場合はお知らせください。私はstackoverflowについていくつかの調査を行いましたが、まだ正確な解決策を見つけることができませんでした. 事前にどうもありがとうございました。