Skip to content

Instantly share code, notes, and snippets.

@trinary
Created June 17, 2016 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trinary/2ec7da1b4da79dd42c13291fd6dcb476 to your computer and use it in GitHub Desktop.
Save trinary/2ec7da1b4da79dd42c13291fd6dcb476 to your computer and use it in GitHub Desktop.
fresh block
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
svg { width:100%; height: 100% }
</style>
</head>
<body>
<script>
// Feel free to change or delete any of the code you see!
var svg = d3.select("body").append("svg")
var logoSize = 30;
var gridSize = 20;
var rowWidth = 200;
var logoOffset = 20;
sortedData = d3.range(40).map(function(d) { return {index: d}});
console.log(sortedData)
var logos = svg.selectAll(".logo")
.data(sortedData)
.enter()
.append("svg:image")
.attr('width', logoSize)
.attr('height', logoSize)
.attr("x", function(d, i) { return ((i % rowWidth) * gridSize) + logoOffset/2; })
.attr("y", function(d, i) { return ((Math.floor(i / rowWidth)) * gridSize) + logoOffset/2; })
.attr("xlink:href", function (d) {
return "https://pbs.twimg.com/profile_images/571791660699250688/QnWlQTfQ_bigger.jpeg"
})
.on("mouseover", function(d, i) {
console.log(d);
d3.select(this)
.attr('width', gridSize)
.attr('height', gridSize)
.attr("x", ((i % rowWidth) * gridSize))
.attr("y", ((Math.floor(i / rowWidth)) * gridSize));
});
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment