gpt4 book ai didi

javascript - 使用 rubaxa 的可排序 Javascript

转载 作者:行者123 更新时间:2023-11-29 21:50:30 25 4
gpt4 key购买 nike

我正在尝试在此页面上实现“多”示例... http://rubaxa.github.io/Sortable/ .我觉得我已经“重新创建”了 https://github.com/RubaXa/Sortable 中规定的结构和适当的选项。 ,但我正在努力让它按我想要的方式运行。

我正在尝试做的简化版本在这里... https://jsfiddle.net/uqcqufo8/

HTML...

<div id="multi">

<div><div data-force="5" class="layer title title_xl">Multi</div></div>

<div class="layer tile" data-force="30" style="width:100px; height:100px; background:grey; margin:5px; display:inline-block; color:red;">

<div class="tile__name">Group A</div>
<div class="tile__list">
<div style="background:red; width:10px; height:10px; margin:2px; display:inline-block;"></div>
<div style="background:blue; width:10px; height:10px; margin:2px; display:inline-block;"></div>
<div style="background:green; width:10px; height:10px; margin:2px; display:inline-block;"></div>
</div>
</div>

<div class="layer tile" data-force="30" style="width:100px; height:100px; background:grey; margin:5px; display:inline-block; color:red;">
<div class="tile__name">Group c</div>
<div class="tile__list">
<div style="background:red; width:10px; height:10px; margin:2px; display:inline-block;"></div>
<div style="background:blue; width:10px; height:10px; margin:2px; display:inline-block;"></div>
<div style="background:green; width:10px; height:10px; margin:2px; display:inline-block;"></div>
</div>
</div>

<div class="layer tile" data-force="30" style="width:100px; height:100px; background:grey; margin:5px; display:inline-block; color:red;">
<div class="tile__name">Group b</div>
<div class="tile__list">
<div style="background:red; width:10px; height:10px; margin:2px; display:inline-block;"></div>
<div style="background:blue; width:10px; height:10px; margin:2px; display:inline-block;"></div>
<div style="background:green; width:10px; height:10px; margin:2px; display:inline-block;"></div>
</div>
</div>

</div>

JavaScript...

var el = document.getElementById('multi');
var sortable = Sortable.create(el, {
animation: 150,
handle: ".tile__name",
draggable: ".tile"
});

基本上,大的灰色方 block 应该是可排序的(实际上是这样),但彩色方 block 也应该是可排序的——它们应该在各自的方框内是可排序的,并且应该可以从一个灰色方框拖到另一个方框。我没有看到我错过了什么。谢谢。

最佳答案

我将您的 javascript 编辑到下面,它对我有用。我遵循了可排序页面上的示例,因此它可能是首选方法:

var el = document.getElementById('multi');
var sortable = Sortable.create(el, {
animation: 150,
handle: ".tile__name",
draggable: ".tile"
});
[].forEach.call(document.getElementById('multi').getElementsByClassName('tile__list'), function (el){
Sortable.create(el, {
group: 'blocks',
animation: 150
});
});

关于javascript - 使用 rubaxa 的可排序 Javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29483678/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com