Last active
August 29, 2015 14:14
-
-
Save brandenbyers/01f33ee4a181a53cf707 to your computer and use it in GitHub Desktop.
Dapper D3
This file contains 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> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
width: 960px; | |
padding-top: 40px; | |
margin: auto; | |
position: relative; | |
} | |
svg { | |
width: 100%; | |
max-height: 400px; | |
} | |
</style> | |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<script type='text/javascript'> | |
window.addEventListener('load', function () { | |
d3.xml('dapperFace.svg', 'image/svg+xml', function (error, data) { | |
d3.select('body').node().appendChild(data.documentElement); | |
var svg = d3.select('svg'); | |
var face = svg.select('#dapperFace'); | |
var mustache = svg.select('#mustache') | |
.on('mouseenter', function () { | |
mustache.style('fill', '#AB69C6'); | |
}) | |
.on('mouseleave', function () { | |
mustache.style('fill', '#000000') | |
}) | |
// .on('click', function () { | |
// mustache | |
// .transition() | |
// .duration(1000) | |
// .ease('bounce') | |
// }); | |
// var eyebrowR = svg.select('#eyebrowR') | |
// .on('click', function() { | |
// eyebrowR | |
// . | |
// }) | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment