Home >Web Front-end >JS Tutorial >js implements mouse dragging of images and is compatible with mainstream browsers such as IE/FF Firefox/Google_javascript skills

js implements mouse dragging of images and is compatible with mainstream browsers such as IE/FF Firefox/Google_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:32:33927browse

Note that preventDefault is used to prevent the browser's default event operation from occurring

Copy the code The code is as follows:

< ;script language="javascript" type="text/javascript">
var isDrag = false;
function isIE(){
if(navigator.userAgent.indexOf("MSIE")>0 ){return true;}
else{return false;}
}
function addListener(element,e,fn){
if(isIE()){element.attachEvent("on" e ,fn);}
else{element.addEventListener(e,fn,false);}
}
function drag(e){
var e = e || window.event;
var element = e.srcElement || e.target;
if(e.preventDefault)e.preventDefault();
else e.returnvalue=false;
isDrag = true;
var relLeft = e.clientX - parseInt(element.style.left);
var relTop = e.clientY - parseInt(element.style.top);
element.onmouseup = function(){ isDrag = false; }
document.onmousemove = function(e_move){
var e_move = e_move || window.event;
if(isDrag){
element.style.left=e_move.clientX - relLeft "px";
element.style.top=e_move.clientY - relTop "px";
return false;
}
}
}
window.onload = function()
{
var element = document.getElementById("elimg");
var element2 = document.getElementById("eldiv");
addListener(element,"mousedown",drag);
addListener(element2 ,"mousedown",drag);
}



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn