HTML HTML5 HTMLタグ スマートフォン |
CSS CSSプロパティ CSS・HTML便利ツール |
HTML色見本 配色組み合わせツール 特殊文字 |
JAVA Android |
PHP Smarty修飾子 EXCEL |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <title>タイトルです</title> <meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=yes" /> </head> <body> <h1>スマートフォンサイトテスト</h1> <p>初めてのスマートフォン向けサイトです</p> </body> </html>
<meta name="viewport" content="width=【横幅】, initial-scale=【初期の倍率】, maximum-scale=【拡大可能な最大の倍率】">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
プロパティ | 内容 | 単位など | デフォルト | 備考 |
---|---|---|---|---|
width | 横幅 | px | 980px | 範囲:200~10,000px 「device-width」の指定が可能 |
height | 縦幅 | px | 範囲:200~10,000px 「device-height」の指定が可能 | |
initial-scale | 倍率の初期値 | 倍 | 範囲:minimum-scale~maximum-scale 1.5とすれば1.5倍 | |
minimum-scale | 倍率の最小値 | 倍 | 0.25 | 範囲:0~10 |
maximum-scale | 倍率の最大値 | 倍 | 1.6 | 範囲:0~10 |
user-scalable | 拡大縮小の可否 | yes | yes または no |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="apple-touch-icon" href="アイコンファイル名">
<link rel="stylesheet" media="screen and (max-device-width: 480px)" href="iphone.css"> <link rel="stylesheet" media="screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait)" href="ipad-portrait.css"> <link rel="stylesheet" media="screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape)" href="ipad-landscape.css"> <link rel="stylesheet" media="screen and (min-device-width: 1025px)" href="pc.css">