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?


Reply With Quote

Bookmarks