標籤:des style blog http io ar color sp for
我們在開發移動端頁面的時候經常會遇到一些通用的需求,往往是,不支援縮放,蘋果瀏覽器隱藏工具列啊等等。我們總結一下:
1 <head> 2 <meta charset="utf-8"> 3 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 4 <title>項目名稱</title> 5 <meta name="description" content=""/> 6 <meta name="viewport" content="minimal-ui, initial-scale=1, width=device-width, maximum-scale=1, minimum-scale=1, user-scalable=no"> 7 <meta name="apple-mobile-web-app-capable" content="yes"> 8 <meta name=‘apple-touch-fullscreen‘ content=‘yes‘> 9 <meta name="full-screen" content="yes">10 <meta name="apple-mobile-web-app-status-bar-style" content="black">11 <meta name="format-detection" content="telephone=no">12 <meta name="format-detection" content="address=no">13 <meta name="keywords" content=""/>14 <link rel="stylesheet" href="./css/reset.css"/>15 17 <link rel="stylesheet" href="./css/index.css"/>18 </head>
移動端頁面頭部定義