index.js 504 B

123456789101112131415161718192021222324252627282930313233343536
  1. $(function(){
  2. //触发弹窗
  3. $('.suspend').on('click',function(){
  4. $('.signbox').show();
  5. $('.cur').show();
  6. $('.signbox').animate({top:'50%'})
  7. })
  8. // 关闭弹窗
  9. $('.clsa').on('click',function(){
  10. $('.signbox').animate({top:'-100%'},function(){
  11. $(this).hide();
  12. $('.cur').hide();
  13. })
  14. })
  15. setTimeout(function(){
  16. $('.suspend').click();
  17. },8000);
  18. /*
  19. * 调用的方法
  20. * */
  21. PublicAction.AjaxSend(
  22. {
  23. CORID:'signbtn', /*操作ID*/
  24. }
  25. );
  26. })