2
A
回答
3
你可以用CSS設置:
@media only screen and (orientation:portrait){
html body * {
display:none;
}
}
@media only screen and (orientation:landscape){
/* your CSS */
}
在波泰特模式下,所有elemnts將被隱藏。您可以設置<div>Switch to landscape</div>
將只顯示在波泰特模式
2
Safari的界面仍然會在縱向模式下,它的具有高度設置爲100%的問題,但你可以在縱向模式時,這樣
旋轉整個html元素html, body {
height: 100%;
}
@media screen and (orientation: portrait){
html {
-webkit-transform: translateY(-100%) rotate(90deg);
transform: translateY(-100%) rotate(90deg);
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
}
}
相關問題
- 1. 如何強制在橫向模式下顯示鍵盤?
- 2. 設置爲僅橫向顯示時,iPad模擬器不顯示在橫向上
- 3. 如何強制UIImagePickerController僅在橫向模式下拍攝圖像....?
- 4. Android SCREEN_ORIENTATION_PORTRAIT僅在橫向模式下顯示縱向視圖
- 5. fieldset在橫向模式下無法正常顯示在ipad上
- 6. 當支持橫向模式時強制iPad應用以縱向模式啓動
- 7. iOS - 強制鍵盤以橫向顯示
- 8. 我可以強制在模擬器上切換縱向/橫向視圖嗎?
- 9. 在橫向模式下鎖定特定的UIViewController +強制橫向模式
- 10. Ipad以肖像模式居中,在橫向模式下工作
- 11. UIModalPresentationFormSheet在橫向模式下的iPad
- 12. 我可以在iPad上顯示「小」320x50 iAd橫幅嗎?
- 13. 僅在橫向模式下顯示容器視圖
- 14. 如何僅在橫向模式下顯示頁面?
- 15. 強制UIViewController只顯示在橫向模式
- 16. 我可以強制ASP.Net網站在特定時區顯示時間嗎?
- 17. iOS - iPad Air和iPad Pro僅在橫向設備中強制設備方向
- 18. iPad:我可以僅在界面製作工具中處理橫向,縱向方向嗎? (非編程)
- 19. 如何在iOS 9上以橫向和縱向模式顯示iPad Launchscreen Storyboard?
- 20. iPad 1顯示縱向模式而不是橫向
- 21. 如何在橫向模式下製作ipad應用程序
- 22. 我可以在橫向上提交appstore上的ipad應用嗎?
- 23. 強制UISplitViewController始終僅在橫向上顯示主(僅在iPhone 6 Plus上)
- 24. 如何以橫向顯示橫向模式?
- 25. 是否有可能在iphone中以橫向模式顯示UIImagePickerController?
- 26. 強制視圖僅支持橫向模式
- 27. 強制UIViewController處於橫向模式iOS7
- 28. 強制UIAlertView進入橫向模式
- 29. AS3 - iOS強制橫向模式?
- 30. iphone - 強制MPMoviePlayerController在橫向模式下播放視頻
,將在波泰特模式做什麼?什麼都不顯示 – laaposto 2014-10-31 15:26:15
我的猜測是使用媒體查詢來顯示/隱藏基於寬度的內容。但那是在黑暗中拍攝的。你能提供更多細節嗎? – trnelson 2014-10-31 15:27:11
if screen.height> screen.width show icon把ipad變成風景? – Stefan 2014-10-31 15:27:54