sortableJS/13sortable.js dragClass 拖拽对...

81 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>sortable.js dragClass属性例子</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, minimal-ui"
/>
<script src="https://www.itxst.com/package/sortable/sortable.min.js"></script>
<style>
.itxst {
margin: 10px auto;
width: 80%;
float: left;
margin-right: 10px;
}
.itxst div {
padding: 6px;
background-color: #fdfdfd;
border: solid 1px #eee;
margin-bottom: 10px;
cursor: move;
}
#msg {
clear: both;
width: 100%;
}
.tips {
border: solid 1px #fff !important;
}
.ghost {
background-color: red !important;
}
.drag {
background: #000 !important;
background-image: linear-gradient(#333, #999) !important;
}
</style>
</head>
<body>
<div class="box">
<div id="g1" class="itxst">
<div class="tips">dragClass 拖动对象的样式</div>
<div class="item" data-no="1">item 1</div>
<div class="item" data-no="2">item 2</div>
<div class="item" data-no="3">item 3</div>
</div>
</div>
<div id="msg"></div>
<script>
// 通过dragClass属性设置拖拽对象移动样式
// 需要注意的是css可能需要!important属性进行覆盖同时设置
// forceFallback: true禁用html5原生拖拽。
const g1 = document.getElementById('g1');
const msg = document.getElementById('msg');
const ops = {
// 动画时间
animation: 166,
// 拖动的元素
draggable: '.item',
// 拖动后的数据
dataIdAttr: 'data-no',
// 停靠位置样式
ghostClass: 'ghost',
// *********拖动对象的样式
dragClass: 'drag',
// *********禁用h5原生行为拖拽
focusFallback: true,
onEnd(event) {
console.log(event);
const arr = sortable.toArray();
msg.innerHTML = JSON.stringify(arr);
},
};
const storable = Sortable.create(g1, ops);
</script>
</body>
</html>