Advertisement
khlau

Spinner on Center Page

Sep 28th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.43 KB | None | 0 0
  1. <style>
  2. div#loading {
  3.   width: 100%;
  4.   height: 100%;
  5.   top: 0px;
  6.   left: 0px;
  7.   position: fixed;
  8.   display: none;
  9.   opacity: 0.7;
  10.   background-color: #fff;
  11.   z-index: 1999;
  12.   color: #fbb450;
  13.   text-align: center;
  14. }
  15. #loading-image {
  16.   position: absolute;
  17.   top: 50%;
  18.   left: 40%;
  19.   z-index: 2000;
  20. }
  21. </style>
  22. <div id="loading">
  23. <img id="loading-image" src="assets/img/loading_spinner.gif" alt="Loading..." />
  24. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement