Created
July 6, 2016 12:43
-
-
Save encody/4e2ef59ea41c216ca2f110ea7180ac38 to your computer and use it in GitHub Desktop.
Button Ripple Effect
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
| <!-- | |
| Video Guide: https://youtu.be/QI2rDHQM5Pc | |
| --> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Button Ripple</title> | |
| <link rel="stylesheet" href="button.css"> | |
| <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <button> | |
| Click Me! | |
| </button> | |
| <button> | |
| Click Me! | |
| </button> | |
| <button> | |
| Click Me! | |
| </button> | |
| <script src="button.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment