js实现拖动交换位置排列效果代码
代码语言:html
所属分类:拖放
代码描述:js实现拖动交换位置排列效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>JavaScript实现图片拖拽交换DEMO演示</title>
<style>
ul, li {
margin: 0;
padding: 0;
list-style: none;
}
ul {
padding: 5px;
width: 480px;
height: 640px;
margin: 100px auto;
position: relative;
background: #3366cc;
}
li {
width: 150px;
height: 150px;
margin: 5px;
float: left;
overflow: hidden;
background: #ff6600;
cursor: move;
-webkit-user-select: none;
}
li img {
width: 150px;
height: 150px;
display: block;
border: none;
}
</style>
</head>
<body>
<ul>
<li><img src="//repo.bfw.wiki/bfwrepo/image/6065030ccad6e.png"></li>
<li><img src="//repo.bfw.wiki/bfwrepo/image/606502f17d4a4.png"></li>
<li><img src="//repo.bfw.wiki/bfwrepo/icon/5e83e01e7154e.png"></li>
<li><img src="//repo.bfw.wiki/bfwrepo/icon/5e83e03407e19.png"></li>
<li><img src="//repo.bfw.wiki/bfwrepo/icon/5e83de11eb571.png"></li>
<li><img src="//repo.bfw.wiki/bfwrepo/icon/5e83debf255e9.png"></li>
<li><img src="//repo.bfw.wiki/bfwrepo/image/606502f17d4a4.png"></li>
<li><img src="//repo.bfw.wiki/bfwrepo/icon/5e83e01e7154e.png"></li>
<li><img src="//repo.bfw.wiki/bfwrepo/icon/5e83e03407e19.png"></li>
<li><img src="//repo.bfw.wiki/bfwrepo/icon/5e83de11eb571.png"></li>
<li><img src="//repo.bfw.wiki/bfwrepo/icon/5e83debf255e9.png"></li>
<li><img src="//repo.bfw.wiki/bfwrepo/image/606502f17d4a4.png"></li>
</ul>
<script>
function on(ele, type, fn) {
if (/^self/.test(type)) {
if (!ele[type]) {
ele[type] = [];
}
var a = ele[type];
for (var i = 0; i < a.length; i++) {
if (a[i] == fn)return;
}
a.push(fn);
}
if (ele.addEventListener) {
ele.addEventListener(type, fn, false);
return;
}
if (!ele["aEvent"+type]) {
ele["aEvent"+type] = [];
ele.attachEvent("on"+type, function(e) {
run.call(ele, e)});
}
var a = ele["aEvent"+type];
for (var i = 0; i < a.length; i++) {
if (a[i] == fn)return;
ele.attachEvent("on"+type, function(e) {
run.call(ele, e)});
}
a.push(fn);
ele.attachEvent("on"+type, function(e) {
run.call(ele, e)});
}
function run() {
var e = window.event;
if (!e.target) {
e.target = e.srcElement;
e.stopPropagation = function() {
e.cancelBubble = true
};
e.preventDefault = function() {
e.returnValue = false
};
e.pageX = (document.documentElement.scrollLeft || document.body.scrollLeft)+e.clientX;
e.pageY = (document.documentElement.scrollTop || document.body.scrollTop)+e.clientY;
}
var a = this["aEvent"+e.type];
for (var i = 0; i < a.length; i++) {
if (typeof a[i] == "function") {
a[i].call(this, e);
} else {
a.splice(i, 1);
i--;
}
}
}
function selfRun(selfType, e) {
var a = this[selfType];
if (a) {
for (var i = 0; i < a.length; i++) {
if (typeof a[i] == "function") {
a[i].call(this, e);
}
}
}
}
function off(ele, type, fn) {
if (/^self/.test(type)) {
var a = ele[type];
if (a) {
for (var i = 0; i < a.length; i++) {
if (a[i] == fn) {
a[i] = null;
break;
}
}
}
}
if (ele.removeEventListener) {
ele.removeEventListener(type, fn, false);
return;
}
var ary = ele["aEvent"+type];
if (ary) {
for (var i = 0; i < ary.length; i++) {
if (ary[i] === fn) {
ary[i] = null;
return;
}
}
}
}
function processThis(obj, fn) {
return function(e) {
fn.call(obj, e)}
}
</script>
<script>
function EventEmitter() {};
EventEmitter.prototype.on = function(type, fn) {
if (!this[type]) {
this[type] = [];
}
var a = this[type];
for (var i = 0; i < a.length; i++) {
if (a[i] == fn)return;
}
a.push(fn);
};
EventEmitter.prototype.run = function(type, e) {
var a = this[type];
if (a) {
for (var i = 0; i < a.length; i++) {
if (typeof a[i] == "function") {
a[i].call(this, e);
} else {
a.splice(i, 1);
i--;
}
}
}
};
EventEmitter.prototype.off = function(type, fn) {
var a = this[type];
if (a) {
for (var i = 0; i < a.length; i++) {
if (a[i] == fn) {
a[i] = null;
break;
}
}
}
};
function Drag(ele) {
this.ele = ele;
this.x = null;
this.y = null;
this.mx = null;
this.my = null;
this.DOWN = processThis(this, this.down);
this.MOVE = processThis(this, this.move);
this.UP = processThis(this, this.up);
on(ele, "mousedown", this.DOWN);
}
Drag.prototype = new EventEmitter;
Drag.prototype.down = function(e) {
this.x = this.ele.offsetLeft;
this.y = this.ele.offsetTop;
this.mx = e.pageX;
this.my = e.pageY;
if (this.ele.setCapture) {
this.ele.setCapture();
on(this.ele, "mousemove", this.MOVE);
on(this.ele, "mouseup", this.UP);
} else {
on(document, "mousemove", this.MOVE);
on(document, "mouseup", this.UP);
}
e.preventDefault();
this.run("dragstart", e);
};
Drag.prototype.move = function(e) {
this.ele.style.left = this.x+(e.pageX-this.mx)+"px";
this.ele.style.top = this.y+(e.pageY-this.my)+"px";
this.run("drag", e);
};
Drag.prototype.up = function(e) {
if (this.ele.releaseCapture) {
this.ele.releaseCapture();
off(this.ele, "mousemove", this.MOVE);
off(this.ele, "mouseup", this.UP);
} else {
off(document, "mousemove", this.MOVE);
off(document, "mouseup", this.UP);
}
this.run("dragend", e);
};
Drag.prototype.addBorder = function() {
this.ele.style.border = "2px red dashed";
};
Drag.prototype.removeBorder = function() {
this.ele.style.border = "";
};
Drag.prototype.border = function() {
this.on("dragstart", this.addBorder);
this.on("dragend", this.removeBorder);
};
</script>
<script src="js/tween.js"></script>
<script>
var oLis = document.getElementsByTagName("li");
//第一步:把浮动布局改造成绝对定位布局,否则无法拖拽
for (var i = oLis.length - 1; i >= 0; i--) {
var oLi = oLis.item(i);
oLi.style.top = (oLi.t = oLi.offsetTop) + "px";
oLi.style.left = (oLi.l = oLi.offsetLeft) + "px";
oLi.style.position = "absolute"; //定位要后做
oLi.style.margin = 0;
var obj = new Drag(oLi);
obj.border();
obj.on("dragstart", increaseIndex);
obj.on("dragend", goHome);
obj.on("drag", getH.........完整代码请登录后点击上方下载按钮下载查看
网友评论0