Last active
August 29, 2015 14:27
-
-
Save krish85/c406ddfb93a8f4628040 to your computer and use it in GitHub Desktop.
Awesome Circles
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></head> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
margin: 0; | |
background: #222; | |
min-width: 960px; | |
} | |
rect { | |
fill: none; | |
pointer-events: all; | |
} | |
circle { | |
fill: none; | |
stroke-width: 2.5px; | |
} | |
</style> | |
<body> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script> | |
<script> | |
var width = Math.max(960, innerWidth), | |
height = Math.max(500, innerHeight); | |
var i = 0; | |
var color = d3.scale.category10(); | |
var svg = d3.select("body").append("svg") | |
.attr("width", width) | |
.attr("height", height); | |
svg.append("rect") | |
.attr("width", width) | |
.attr("height", height) | |
.on("ontouchstart" in document ? "touchmove" : "mousemove", circling); | |
function circling() { | |
var m = d3.mouse(this); | |
svg.insert("circle", "rect") | |
.attr("cx", m[0]) | |
.attr("cy", m[1]) | |
.attr("r", 1e-6) | |
//.style("stroke", d3.hsl((i = (i + 1) % 360), 1, .5)) | |
.style("stroke", color(i++)) | |
.style("stroke-opacity", 1) | |
.transition() | |
.duration(2000) | |
.ease(Math.sqrt) | |
.attr("r", 100) | |
.style("stroke-opacity", 1e-6) | |
.remove(); | |
d3.event.preventDefault(); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment