Skip to content

Instantly share code, notes, and snippets.

@YvetteZ2017
Created November 20, 2017 22:36
Show Gist options
  • Save YvetteZ2017/f425716cae23f8c2c71d213a667ba134 to your computer and use it in GitHub Desktop.
Save YvetteZ2017/f425716cae23f8c2c71d213a667ba134 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.v4.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
</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", 1000)
var circle = svg.append("circle")
.attr("cy", 0)
.attr("cx", 500)
.attr("r", 10)
.style("fill", "#B62A3D")
function drop() {
circle
.transition()
.attr("cy",950)
.duration(10000)
}
function moveLeft() {
circle
.transition()
.attr("cx", circle.attr("cx")-20)
}
function moveRight() {
circle
.transition()
.attr("cx", circle.attr("cx")+20)
}
document.addEventListener('keydown', function(event) {
event.preventDefault();
if (event.which === 32) {
drop();
} else if (event.which === 37) {
moveLeft();
} else if (event.which === 39) {
moveRight();
}
})
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment