html5禁止橫屏的方法:先開啟對應的HTML5程式碼檔案;然後在head區域中加入「<meta name="screen-orientation" content="portrait">」即可禁止html5頁面橫屏。
本文操作環境:windows7系統、HTML5&&CSS3版、Dell G3電腦。
禁止手機端html5頁橫屏
禁止手機端html5頁橫屏,uc瀏覽器和qq瀏覽器禁止橫屏代碼如下,meta標籤加入head區域< ;meta name="screen-orientation" content="portrait">
# uc瀏覽器強制垂直螢幕
<meta name="screen-orientation" content="portrait">
QQ瀏覽器強制垂直螢幕
<meta name="x5-orientation" content="portrait">
UC瀏覽器強制全螢幕
<meta name="full-screen" content="yes">
QQ瀏覽器強制全螢幕
<meta name="x5-fullscreen" content="true">
UC瀏覽器應用模式
<meta name="browsermode" content="application">
QQ瀏覽器應用模式
<meta name="x5-page-mode" content="app">
windows phone 點選無高光
<meta name="msapplication-tap-highlight" content="no">
【推薦學習:HTML5影片教學】
以上是html5怎麼禁止橫屏的詳細內容。更多資訊請關注PHP中文網其他相關文章!