This commit is contained in:
我是个攻城狮
2026-05-27 16:01:15 +08:00
parent dc43370953
commit c3f5f13bb3
953 changed files with 107635 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
(function() {
var u = navigator.userAgent,
w = window.innerWidth;
if (!u.match(/AppleWebKit.*Mobile.*/) || u.indexOf('iPad') > -1) {
var sw = w * 576 / 1920;
window.innerWidth = sw < 375 ? 375 : sw;
window.onload = function() {
window.innerWidth = w;
}
}
})();