
October 25th, 2012, 11:39 AM
|
|
Contributing User
|
|
Join Date: Nov 2005
Posts: 46
Time spent in forums: 10 h 41 m 8 sec
Reputation Power: 8
|
|
|
Animated Image
When the user does the search and waits for the result, an animated image such as an hourglass will appear on the middle of the screen so that the user will know the process is still going on.
I went to this site:http://loadinggif.com/ and downloaded #3, and saved it to my server's WebContent/images directory. I gave it a name: dial.gif.
Next I tried to used it in a popup <div> (z-index based).
The original codes:
var processing = '<div class="process"><br>'
content += '<embed src="/flash/loading.swf" quality="autolow" '
if(modal.browserWindow.os != 'mac') {
content += ' wmode="transparent"';
} else {
content += ' wmode="window"';
}
content += ' pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="60" height="60"></embed>' + '</div>';
Now, I tried to use the download image, dial.gif to replace the swf file, something like:
content += '<div ><img src="/imgs/dial.gif" /></div';
How can I do it?
Last edited by otnj2ee : October 25th, 2012 at 11:52 AM.
|