You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
306 B

1 year ago
  1. (function (){
  2. var u = navigator.userAgent,
  3. w = window.innerWidth;
  4. if (!u.match(/AppleWebKit.*Mobile.*/) || u.indexOf('iPad') > -1) {
  5. var sw = w*576/1920;
  6. window.innerWidth = sw<375?375:sw;
  7. window.onload = function() {
  8. window.innerWidth = w;
  9. }
  10. }
  11. })();