We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

dertimbo on 07/11/06


Tagged

ajax notification message request


Versions (?)


Who likes this?

15 people have marked this snippet as a favorite

luman
xaviaracil
jonbaer
px
Hollow
chrisaiv
jacksont123
Phoenix
jbo
vali29
pagetoscreen
gAmUssA
blackabee
chianess
titox


LoadingMessage for AJAX requests: CSS


Published in: CSS 


URL: http://www.freshlabs.de/journal/archives/2006/07/ajax-loadingmessage-in-json/

The stylesheet for the LoadingMessage object (http://snipplr.com/view/347/loadingmessage-for-ajax-requests/).

  1. #loading-message{
  2. position: fixed;
  3. z-index: 100;
  4. top: 10px;
  5. left: 0;
  6. width: 100%;
  7. font: bold 1.8em "Lucida Grande", Helvetica, Arial, sans-serif;
  8. text-align: center;
  9. background-color: #000;
  10. border-top: 1px solid #ccc;
  11. border-bottom: 1px solid #ccc;
  12. padding: 3px 0;
  13. /*filter:alpha(opacity=70);
  14. opacity: 0.7;
  15. -moz-opacity:0.7;*/
  16. }
  17.  
  18. #loading-message #loading-image{
  19. vertical-align: middle;
  20. margin-bottom: 4px;
  21. }
  22.  
  23. #loading-message #loading-text{
  24. color: #fff;
  25. margin: 0;
  26. /*filter:alpha(opacity=100);
  27. opacity: 1;
  28. -moz-opacity:1;*/
  29. }

Report this snippet 

You need to login to post a comment.