//防止屏幕滑动
        $(window).on('scroll.elasticity', function (e) {
            e.preventDefault();
        }).on('touchmove.elasticity', function (e) {
            e.preventDefault();
        });
//重设字体大小
        var _resizeFromFont = function () {
            $('.content-form>form').each(function () {
                $(this).css('font-size', $(this).width() * 0.04);
            });
        }
        $(window).resize(function () {
            _resizeFromFont();
        });
        _resizeFromFont();

使用时,css文件中使用em单位,例如font-size: 1em;

posted on 2016-12-20 10:28  Nyah  阅读(640)  评论(0编辑  收藏  举报