Created
July 6, 2015 04:56
-
-
Save adambray/852ffdbe76e72cce1f40 to your computer and use it in GitHub Desktop.
domXyg
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
<h1>Click the red dot for a surprise!</h1> | |
<img src="http://media.giphy.com/media/seXDJPWScjklO/giphy.gif" id="laser_cat" /> |
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
var cat = { | |
name: "Frisky 'Cornelius' McWhiskertons", | |
pastimes: "chasing red dots, juding silly humans, and sitting on keyboards", | |
start: function() { | |
document.getElementById("laser_cat").addEventListener("click", function() { | |
alert("My name is " + this.name + " and I like " + this.pastimes); | |
}); | |
} | |
} | |
cat.start(); |
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
@import url(http://fonts.googleapis.com/css?family=Poiret+One); | |
body { | |
font-family: 'Poiret One', cursive; | |
} | |
img { | |
width: 300px; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment