Re: [Proto-Scripty] Lightbox-style Progress Indicator

2010-06-04 Thread Miguel Beltran R.
2010/6/4 Jelks jelks.caban...@gmail.com Hoping not to reinvent the wheel, I am looking for a simple Prototype- based progress indicator. I'd like to display One moment please ... with an animated GIF in something lightbox-like (but no Close button) in the center of the screen. It should

Re: [Proto-Scripty] Lightbox-style Progress Indicator

2010-06-04 Thread Walter Lee Davis
Make a layer in your HTML: div id=cover style=display:none/div Use your favorite CSS to position it in the viewport: #cover{ position:fixed; z-index:1000; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.5) url(spinner.gif) no-repeat center center; }