开发者

How to create loading popup which stay 5 seconds

开发者 https://www.devze.com 2023-03-20 03:21 出处:网络
Can somebody help me how to create on function loading() ( I have<div id=\"l\" onclick=\"loading\"></div>) to show popup with loading gif for 5 seconds (like http://www.queness.com/resourc

Can somebody help me how to create on function loading() ( I have<div id="l" onclick="loading"></div>) to show popup with loading gif for 5 seconds (like http://www.queness.com/resources/html/moda开发者_如何学JAVAl/jquery-modal-window.html Simple Modal Window


Try

window.setTimeout(function(){window.close()}, 5000);


You need to look into overlays: http://flowplayer.org/tools/overlay/index.html

0

精彩评论

暂无评论...
验证码 换一张
取 消