Created
December 16, 2013 04:40
-
-
Save siteslave/7982414 to your computer and use it in GitHub Desktop.
[ประกอบหนังสือ Bootstrap]
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>Bootstrap 101 Template</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <!-- Bootstrap --> | |
| <link href="../assets/css/bootstrap.min.css" rel="stylesheet"> | |
| <script src="../assets/js/jquery.js"></script> | |
| <script src="../assets/js/bootstrap.min.js"></script> | |
| <!-- ladda --> | |
| <link href="dist/ladda-themeless.min.css" rel="stylesheet"> | |
| <script src="dist/spin.min.js"></script> | |
| <script src="dist/ladda.min.js"></script> | |
| <!-- ladda --> | |
| </head> | |
| <body style="padding: 100px;"> | |
| <form action="#"> | |
| <p> | |
| <button type="button" class="btn btn-success ladda-button" | |
| data-style="expand-left" id="btn_save" data-size="xs"> | |
| <span class="ladda-label">Save data</span> | |
| </button> | |
| </p> | |
| </form> | |
| <script> | |
| $('#btn_save').on('click', function(e) { | |
| e.preventDefault(); | |
| var ladda = Ladda.create(this); | |
| ladda.start(); | |
| setTimeout(function () { | |
| ladda.stop(); | |
| }, 3000); | |
| }); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment