码迷,mamicode.com
首页 > 其他好文 > 详细

弹窗至下往上弹出

时间:2018-04-21 14:28:17      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:效果   ima   abs   color   页面   func   round   timeout   fun   

$(document).ready(function() {

  //进入页面后有3秒间隔才弹出弹窗,
    setTimeout(function(){
        $("#c_swt").slideDown(1000);
    },3000);

//点击关闭的动画效果,是自上而下淡出的
    $(".close1").on("click",function(){
            $("#c_swt").stop().animate({top:"100%"},1000,function(){
                $("#add_wx").hide();
                $("#liudian").show();
                setTimeout(function(){
                    $("#c_swt").animate({top:"0"},1000);
                },5000);  //关闭了再次弹出
            });
        });

});

光是这一段代码是没法实现至下而上的效果。需要在"#c_swt"盒子定位,position:fixed;bottom:0;或是position:absolute;bottom:0;
  

弹窗至下往上弹出

标签:效果   ima   abs   color   页面   func   round   timeout   fun   

原文地址:https://www.cnblogs.com/duxingdexin/p/8900732.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!