具体代码如下:

//可能会产生闪烁问题,所以首先将盒子隐藏
   $(function () {

            elementCenter();
            $(window).resize(function () {
            elementCenter();
            })

            function elementCenter() {
            $('.box').click(function () {

            var height = $(window).height() - $('.box').height()

            $(this).offset({
            top: height / 2,
            }).css({
            display: 'block'
            })

            })

            $('.box').trigger("click")
            }

        })

伸个爪子
6 声望0 粉丝

引用和评论

0 条评论