Created
November 5, 2013 02:12
-
-
Save ikawka/7312704 to your computer and use it in GitHub Desktop.
Add overlay to JQueryMobile Loader and disable functions below the loader.
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
| Add this style | |
| <style type="text/css"> | |
| .ui-loader-background { | |
| background: rgba(0, 0, 0, 0.5); | |
| width:100%; | |
| height:100%; | |
| top:0; | |
| margin: 0; | |
| display:none; | |
| position: fixed; | |
| z-index:99; | |
| } | |
| .ui-loading .ui-loader-background { | |
| display:block; | |
| } | |
| </style> | |
| Then add this to the end of the BODY | |
| <div class="ui-loader-background"> </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment