84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
如上代码,使页面限制成640px宽度,但是在有的设备上是失效的,有的是高度好像没跟着缩小~求解
这样设置,让其自适应
var width; if(window.orientation===undefined){ width = screen.width; }else{ if(window.orientation==0){ width=Math.min(screen.width,screen.height); }else{ width=Math.max(screen.width,screen.height); } } var scale = width / 640; document.write('');
最近新找到的解决方法,有效。但其兼容性还需要再测测,基本主流机型是没出现问题
content=”width=device-width,让其自适应足矣,不知道为何要你那么做
这样设置,让其自适应
最近新找到的解决方法,有效。但其兼容性还需要再测测,基本主流机型是没出现问题
content=”width=device-width,让其自适应足矣,不知道为何要你那么做