Last active
November 6, 2017 02:06
-
-
Save outoftime/bf415d3610af18ef200e9b44ff85e6b7 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=bf415d3610af18ef200e9b44ff85e6b7
This file contains hidden or 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> | |
| <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> |
This file contains hidden or 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
| {"enabledLibraries":["jquery"]} |
This file contains hidden or 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
| $("#dog-switch").click(function() { | |
| }); |
This file contains hidden or 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
| #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