Advertisement
deliciousthemes

Untitled

Feb 27th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.46 KB | None | 0 0
  1. .whitebg {
  2.     background-color: #FFF;
  3.     width: 100%;
  4.     height: 100%;
  5.     position: fixed;
  6.     z-index: 100000;
  7. }
  8.  
  9. #spinner {
  10.     position: absolute;
  11.     height:35px;
  12.     width:35px;
  13.     top: 50%;
  14.     border:3px solid rgba(226, 226, 226, 0.75);
  15.     border-radius:100%;
  16.     -webkit-animation: rotation 1s infinite linear;
  17.     -moz-animation: rotation 1s infinite linear;
  18.     -o-animation: rotation 1s infinite linear;
  19.     animation: rotation 1s infinite linear;
  20.     left: 50%;
  21.     margin-left: -17px;
  22.     margin-top: -17px;
  23. }
  24.  
  25. .no-csstransforms #spinner {
  26.     background:url(images/preloader.gif) no-repeat scroll 0 0;
  27.     width: 38px;
  28.     height: 38px;
  29.     border: 0;
  30.     margin-left: -19px;
  31.     margin-top: -19px; 
  32. }
  33.  
  34. .no-csstransforms #spinner:before {
  35.     border: 0;
  36. }  
  37.  
  38. #spinner:before {
  39.    content:"";
  40.    display:block;
  41.    position:absolute;
  42.    left:-3px;
  43.    top:-3px;
  44.    height:100%;
  45.    width:100%;
  46.    border-top:3px solid rgba(0,0,0,1);
  47.    border-left: 3px solid #000;
  48.    border-bottom:3px solid transparent;
  49.    border-right: 3px solid #000;
  50.    border-radius:100%;
  51. }
  52. @-webkit-keyframes rotation {
  53.    from {-webkit-transform: rotate(0deg);}
  54.    to {-webkit-transform: rotate(359deg);}
  55. }
  56. @-moz-keyframes rotation {
  57.    from {-moz-transform: rotate(0deg);}
  58.    to {-moz-transform: rotate(359deg);}
  59. }
  60. @-o-keyframes rotation {
  61.    from {-o-transform: rotate(0deg);}
  62.    to {-o-transform: rotate(359deg);}
  63. }
  64. @keyframes rotation {
  65.    from {transform: rotate(0deg);}
  66.    to {transform: rotate(359deg);}
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement