$(function () { var ZoomNum = ( (window.screen.availWidth) / 375).toFixed(2) $('html').css('fontSize', 16 *ZoomNum) $('.zoomBox').css('cssText', 'height:auto!important') $('.zoomBox').css({ // 'margin-top': '88px', width: window.screen.availWidth }) // var metaMobie = document.querySelector('meta[name=viewport]') // metaMobie.content += `, initial-scale=${ // 1 / window.devicePixelRatio // },maximum-scale=2.0,minimum-scale=0` // $('.mZoom').css({ // width: window.screen.availWidth // }) $('.logo>a>img').css('display', 'none') $('.header').addClass('headerShadow fixed') $('.logo').css({ background: `url('/static/img/hand-logo.svg') no-repeat`, backgroundSize: '110px 26px' }) $(window).scroll(function () { var offsetTop = $('.header').offset().top // console.log(offsetTop); if (offsetTop === 0) { $('.logo').addClass('logo-new') } }) // $('.mZoom').css({'min-width':'375px'}) })