js自适应高度

来源:互联网 发布:爱国 知乎 编辑:程序博客网 时间:2024/06/06 06:59
 $(window).resize(function () {
            setHeightWidth();
        });
        function setHeightWidth() {
            var winHeight = $(window).height();
            var topHeight = 80;
            var bottomHeight = 50;
            var topPadding = (parseInt(winHeight) - topHeight - bottomHeight - 672);
            if (topPadding > 0) {
                $("#bottom").addClass("bot_pf");
               
            }


        }
0 0
原创粉丝点击