Skip to content

Instantly share code, notes, and snippets.

@curiousYi
Created September 24, 2018 19:44
Show Gist options
  • Save curiousYi/1bc2dc0a47c616a2762461e291084b43 to your computer and use it in GitHub Desktop.
Save curiousYi/1bc2dc0a47c616a2762461e291084b43 to your computer and use it in GitHub Desktop.
fresh block
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v3.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
.selection {
fill: white;
border: black
}
</style>
</head>
<body>
<script>
// Feel free to change or delete any of the code you see in this editor!
var svg = d3.select("body").append("svg")
.attr("width", 960)
.attr("height", 500)
svg.on('mousedown', () => {
const startingCoord = d3.mouse(this);
clickAndDragStorage.startingCoord = startingCoord;
svg.append('rect')
.attr({
/*
removed rx ry
*/
class: 'click-and-drag-selection',
x: startingCoord[0],
y: startingCoord[1],
width: 0,
height: 0,
});
})
svg.append('rect')
.attr({
height:20,
width: 20,
fill: 'red',
x: 100,
y: 100
})
svg.append('rect')
.attr({
height:5,
width: 5,
fill: 'green',
x: 95,
y: 95
})
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment