waitdialog.js 677 B

123456789101112131415161718192021
  1. //调用
  2. function initial() {
  3. showWaitDialog();
  4. setInterval("closeWaitDialog()",3000);
  5. }
  6. //显示等待框
  7. function showWaitDialog() {
  8. $(".overlay,.showbox").show();
  9. // var h = $(document).height();
  10. // $(".overlay").css({ "height": h });
  11. // $(".showbox").css({ 'display': 'block' });
  12. // $(".overlay").css({ 'display': 'block', 'opacity': '0.8' });
  13. // $(".showbox").css({ 'margin-top': '250px', 'opacity': '1' });
  14. }
  15. //关闭等待框
  16. function closeWaitDialog() {
  17. $(".overlay,.showbox").hide();
  18. // $(".showbox").css({ 'margin-top': '250px', 'opacity': '0' });
  19. // $(".overlay").css({ 'display': 'none', 'opacity': '0' });
  20. // $(".showbox").css({ 'display': 'none' });
  21. }