Created
September 25, 2017 06:04
-
-
Save IvanAlekseevichPopov/014c4a152de40549576546d85a11bc6e to your computer and use it in GitHub Desktop.
loading animation in button
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
| <div style="margin:3em;"> | |
| <button type="button" class="btn btn-primary btn-lg " id="load" data-loading-text="<i class='fa fa-circle-o-notch fa-spin'></i> Processing Order">Submit Order</button> | |
| <br> | |
| <br> | |
| <button type="button" class="btn btn-primary btn-lg" id="load" data-loading-text="<i class='fa fa-spinner fa-spin '></i> Processing Order">Submit Order</button> | |
| </div> |
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
| $('.btn').on('click', function() { | |
| var $this = $(this); | |
| $this.button('loading'); | |
| setTimeout(function() { | |
| $this.button('reset'); | |
| }, 8000); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment