123456789101112131415161718192021222324252627282930313233343536 |
- $(function(){
- //触发弹窗
- $('.suspend').on('click',function(){
- $('.signbox').show();
- $('.cur').show();
- $('.signbox').animate({top:'50%'})
-
- })
- // 关闭弹窗
- $('.clsa').on('click',function(){
- $('.signbox').animate({top:'-100%'},function(){
- $(this).hide();
- $('.cur').hide();
- })
- })
- setTimeout(function(){
- $('.suspend').click();
- },8000);
- /*
- * 调用的方法
- * */
- PublicAction.AjaxSend(
- {
- CORID:'signbtn', /*操作ID*/
- }
- );
- })
|