Skip to content

Instantly share code, notes, and snippets.

@outoftime
Last active November 6, 2017 02:06
Show Gist options
  • Select an option

  • Save outoftime/bf415d3610af18ef200e9b44ff85e6b7 to your computer and use it in GitHub Desktop.

Select an option

Save outoftime/bf415d3610af18ef200e9b44ff85e6b7 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=bf415d3610af18ef200e9b44ff85e6b7
<!DOCTYPE html>
<html>
<head>
<title>Dog Switch</title>
</head>
<body>
<div id="dog-switch">Dog Switch</div>
<img src="https://cl.ly/0o0P2r080p0U/hugedog.jpg">
</body>
</html>
{"enabledLibraries":["jquery"]}
$("#dog-switch").click(function() {
});
#dog-switch {
width: 50vw;
margin: 2rem auto;
background-color: #eee;
border: 1px solid #ddd;
font-family: Arial;
padding: 2rem;
text-align: center;
cursor: pointer;
font-weight: bold;
}
img {
max-width: 100vw;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment