42. 2-1-7. ホームアイコン
ジェネレータ
『Makeappicon - Generate app
icons of all sizes in a click!』
http://makeappicon.com/
• 1024✕1024で出力した画像(jpg, png,
psd)をドラッグドロップ
55. リンクツール
2-2. 検証環境
Chrome to Mobile 拡張機能
(Chrome Mobile)
『Chrome to Mobile 拡張機能』
https://support.google.com/chrome/
answer/2451559?
p=ib_chrome_to_mobile&rd=1
56. リンクツール
2-2. 検証環境
Chrome to Phone 拡張機能
(Android)
『Google Chrome to Phone 拡張機能』
https://chrome.google.com/webstore/
detail/google-chrome-to-phone-ex/
oadboiipflhobonjjffjbfekfjcgkhco
61. 3-1. リソース記述位置
✕ worst case
JS → HTML → CSS
http://test0001.s-ej.com/54/s01.html
http://www.webpagetest.org/result/
140911_Y0_6AK/
• Start Render遅延
62. 3-1. リソース記述位置
△ bad case
HTML → JS → CSS
http://test0001.s-ej.com/54/s02.html
http://www.webpagetest.org/result/
140911_GD_6B1/
• FOUC(Flash of Unstyled Content)発症
63. 3-1. リソース記述位置
◯ good case
CSS → HTML → JS
http://test0001.s-ej.com/54/s03.html
http://www.webpagetest.org/result/
140911_01_6BS/
65. 3-2. リクエスト数
✕ bad case
10 requests each
style1~10.css
img1~10.jpg
script1~10.js
http://test0001.s-ej.com/54/s11.html
http://www.webpagetest.org/result/140911_M5_74P/
• Speed Index遅延
66. 3-2. リクエスト数
◯ good case
concated 1 request each
style.all.css
img.all.jpg
script.all.js
http://test0001.s-ej.com/54/s12.html
http://www.webpagetest.org/result/140911_3M_753/
68. 3-3. minify、画像最適化
✕ bad case
concated 1 request each
style.all.css
img.all.jpg
script.all.js
http://test0001.s-ej.com/54/s12.html
http://www.webpagetest.org/result/140911_3M_753/
• Speed Index遅延
69. 3-3. minify、画像最適化
◯ good case
concated and minified 1 request each
style.all.min.css
img.all.comp.jpg
script.all.min.js
http://test0001.s-ej.com/54/s13.html
http://www.webpagetest.org/result/140911_84_7F5/