一、 @custom-media --sm (
min-width
:
576px
);
css
@custom-media --md (
min-width
:
768px
);
@custom-media --lg (
min-width
:
992px
);
@custom-media --xl (
min-width
:
1200px
);
.info-header {
@media (--md) {
width
:
50%
;// ipad
}
margin-left
:
auto
;
margin-right
:
auto
;
border-bottom
:
1px
solid
#dddddd
;//手機
}
根據不一樣屏幕動態寫入font-size,以rem做爲寬度單位,固定佈局視口。html
<meta name="viewport" content="width=device-width,initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
以640px設計稿和750px的視覺稿,網易這樣處理的:佈局
var width = document.documentElement.clientWidth; // 屏幕的佈局視口寬度 var rem = width / 7.5; // 750px設計稿將佈局視口分爲7.5份 var rem = width / 6.4; // 640px設計稿將佈局視口分爲6.4份
這樣無論是750px設計稿仍是640px設計稿,1rem 等於設計稿上的100px。故px轉換rem時:spa
rem = px * 0.01;
在750px設計稿上:scala
75px 對應 0.75rem, 距離佔設計稿的10%; 在ipone6上: width = document.documentElement.clientWidth = 375px; rem = 375px / 7.5 = 50px; 0.75rem = 37.5px; (37.5/375=10%;佔屏幕10%) 在ipone5上: width = document.documentElement.clientWidth = 320px; rem = 320px / 7.5 = 42.667px; 0.75rem = 32px; (32/320=10%;佔屏幕10%)
三、ipone適配ipad須要設置
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {設計
return (interfaceOrientation == UIInterfaceOrientationPortrait);code
}htm
- (NSUInteger)supportedInterfaceOrientations{事件
return UIInterfaceOrientationMaskPortrait;ip
}
就會致使iPhone應用在ipad mini上默認顯示的是橫屏顯示的,點擊事件,佈局都會受到影響。