가로 세로 화면을 방지할 때 아이폰이 자동으로 축소되는 js 코드
1128 단어 iPhone
function orientation_change() {
var viewport = document.querySelector('meta[name="viewport"]');
if (window.orientation == 0 || window.orientation == 180)
viewport.setAttribute("content", "width=device-width, maximum-scale=1.0, initial-scale=1.0, user-scalable=no");
else if (window.orientation == -90 || window.orientation == 90)
viewport.setAttribute("content", "width=device-height, maximum-scale=1.0, initial-scale=1.0, user-scalable=no");
}
window.onorientationchange = orientation_change;
window.orientation: 이 속성은 현재 장치의 화면 방향을 보여 줍니다. 0은 세로 화면, 양과 음은 90은 가로 화면(왼쪽과 오른쪽) 모드를 나타냅니다.
onorientationchange: 매번 화면 방향이 가로 세로 화면 사이를 전환할 때마다 이 윈도우 이벤트를 터치합니다. 사용법은 전통적인 이벤트와 유사합니다.
#b{width:300px;height:200px;background:blue;}
@media screen and (orientation:portrait){
#b{background:red;}
}
@media screen and (orientation:landscape){
#b{background:green;}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
IOS Application core architectureA new IOS application program is mainly composed of the following files: If the app delegate class is nil, UIKit will as...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.