美文网首页
模态框动画+随屏幕高度垂直居中

模态框动画+随屏幕高度垂直居中

作者: 紫灬楓 | 来源:发表于2018-02-09 16:52 被阅读22次
    $('#modalButton,#wl-footer-rating').click(function () {
        $('#myModal').on('shown.bs.modal', function () {  //获取弹框
            // $('.modal_form input').eq(0).focus();
            var modalHeight = ($(window).height() - $('.modal-dialog').height())/2;
            $('.modal-dialog').stop().css({'margin-top':0}).animate({
                'margin-top': modalHeight
            });
            $(window).resize(function () {  //随屏幕高度垂直居中
                var modalTop = ($(window).height() - $('.modal-dialog').height())/2;
                $('.modal-dialog').css({
                    'margin-top': modalTop
                });
            });
        });
    });
    

    相关文章

      网友评论

          本文标题:模态框动画+随屏幕高度垂直居中

          本文链接:https://www.haomeiwen.com/subject/mnfqtftx.html