Created
July 30, 2014 18:45
-
-
Save soney/61563edbd279fb3132ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Drag Lock Exercise" /> | |
<script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script> | |
</head> | |
<body> | |
<div class="output"></div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*jslint nomen: true */ | |
/*global Raphael, window */ | |
(function () { | |
"use strict"; | |
var paper = new Raphael(0, 0, 500, 500), | |
rect = paper.rect(0, 0, 150, 100); | |
rect.attr("fill", "black"); | |
var isDragLocked = false, | |
mm_listener = function(mm_event) { | |
rect.attr({ | |
x: mm_event.x - rect.attr("width")/2, | |
y: mm_event.y - rect.attr("height")/2 | |
}); | |
}, | |
mu_listener = function(mu_event) { | |
window.removeEventListener("mousemove", mm_listener); | |
window.removeEventListener("mouseup", mu_listener); | |
rect.attr("fill", "black"); | |
}; | |
rect.mousedown(function(md_event) { | |
rect.attr({ | |
x: md_event.x - rect.attr("width")/2, | |
y: md_event.y - rect.attr("height")/2 | |
}); | |
window.addEventListener("mousemove", mm_listener); | |
window.addEventListener("mouseup", mu_listener); | |
rect.attr("fill", "blue"); | |
}).dblclick(function(dc_event) { | |
if(isDragLocked) { | |
removeEventListener("mousemove", mm_listener); | |
} else { | |
addEventListener ("mousemove", mm_listener); | |
rect.attr("fill", "navy"); | |
} | |
isDragLocked = !isDragLocked; | |
}).click(function() { | |
if(isDragLocked) { | |
isDragLocked = false; | |
removeEventListener("mousemove", mm_listener); | |
} | |
}); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment