整合營銷服務商

          電腦端+手機端+微信端=數據同步管理

          免費咨詢熱線:

          HTML 常用頭部標簽(meta)

          來看下常用的標簽列表,后文會一一介紹:

          <!DOCTYPE html> <!-- 使用 HTML5 doctype,不區分大小寫 -->

          <html lang="zh-cmn-Hans"> <!-- 更加標準的 lang 屬性寫法 http://zhi.hu/XyIa -->

          <head>

          <meta charset='utf-8'> <!-- 聲明文檔使用的字符編碼 -->

          <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <!-- 優先使用 IE 最新版本和 Chrome -->

          <meta name="description" content="不超過150個字符" /> <!-- 頁面描述 -->

          <meta name="keywords" content=""/> <!-- 頁面關鍵詞 -->

          <meta name="author" content="name, email@gmail.com" /> <!-- 網頁作者 -->

          <meta name="robots" content="index,follow" /> <!-- 搜索引擎抓取 -->

          <!-- 為移動設備添加 viewport -->

          <meta name ="viewport" content ="initial-scale=1, maximum-scale=3, minimum-scale=1, user-scalable=no"> <!-- `width=device-width` 會導致 iPhone 5 添加到主屏后以 WebApp 全屏模式打開頁面時出現黑邊 http://bigc.at/ios-webapp-viewport-meta.orz -->

          <!-- iOS 設備 begin -->

          <meta name="apple-mobile-web-app-title" content="標題"> <!-- 添加到主屏后的標題(iOS 6 新增) -->

          <meta name="apple-mobile-web-app-capable" content="yes" /> <!-- 是否啟用 WebApp 全屏模式 -->

          <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <!-- 設置狀態欄的背景顏色,只有在 `"apple-mobile-web-app-capable" content="yes"` 時生效 -->

          <meta name="format-detection" content="telephone=no" /> <!-- 禁止數字識自動別為電話號碼 -->

          <meta name="apple-itunes-app" content="app-id=myAppStoreID, affiliate-data=myAffiliateData, app-argument=myURL"> <!-- 添加智能 App 廣告條 Smart App Banner(iOS 6+ Safari) -->

          <!-- iOS 圖標 begin -->

          <link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-57x57-precomposed.png" /> <!-- iPhone 和 iTouch,默認 57x57 像素,必須有 -->

          <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114-precomposed.png" /> <!-- Retina iPhone 和 Retina iTouch,114x114 像素,可以沒有,但推薦有 -->

          <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144x144-precomposed.png" /> <!-- Retina iPad,144x144 像素,可以沒有,但推薦有 -->

          <!-- iOS 圖標 end -->

          <!-- iOS 啟動畫面 begin -->

          <link rel="apple-touch-startup-image" sizes="768x1004" href="/splash-screen-768x1004.png" /> <!-- iPad 豎屏 768 x 1004(標準分辨率) -->

          <link rel="apple-touch-startup-image" sizes="1536x2008" href="/splash-screen-1536x2008.png" /> <!-- iPad 豎屏 1536x2008(Retina) -->

          <link rel="apple-touch-startup-image" sizes="1024x748" href="/Default-Portrait-1024x748.png" /> <!-- iPad 橫屏 1024x748(標準分辨率) -->

          <link rel="apple-touch-startup-image" sizes="2048x1496" href="/splash-screen-2048x1496.png" /> <!-- iPad 橫屏 2048x1496(Retina) -->

          <link rel="apple-touch-startup-image" href="/splash-screen-320x480.png" /> <!-- iPhone/iPod Touch 豎屏 320x480 (標準分辨率) -->

          <link rel="apple-touch-startup-image" sizes="640x960" href="/splash-screen-640x960.png" /> <!-- iPhone/iPod Touch 豎屏 640x960 (Retina) -->

          <link rel="apple-touch-startup-image" sizes="640x1136" href="/splash-screen-640x1136.png" /> <!-- iPhone 5/iPod Touch 5 豎屏 640x1136 (Retina) -->

          <!-- iOS 啟動畫面 end -->

          <!-- iOS 設備 end -->

          <meta name="msapplication-TileColor" content="#000"/> <!-- Windows 8 磁貼顏色 -->

          <meta name="msapplication-TileImage" content="icon.png"/> <!-- Windows 8 磁貼圖標 -->

          <link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" /> <!-- 添加 RSS 訂閱 -->

          <link rel="shortcut icon" type="image/ico" href="/favicon.ico" /> <!-- 添加 favicon icon -->

          <title>標題</title>

          </head>

          基本標簽

          使用 HTML5 doctype,不區分大小寫。

          <!DOCTYPE html> <!-- 使用 HTML5 doctype,不區分大小寫 -->

          聲明文檔使用的字符編碼

          <meta charset='utf-8'> <!-- 聲明文檔使用的字符編碼 -->

          更加標準的 lang 屬性寫法 http://zhi.hu/XyIa

          • 簡體中文
          • <html lang="zh-cmn-Hans"> <!-- 更加標準的 lang 屬性寫法 http://zhi.hu/XyIa -->
          • 繁體中文
          • <html lang="zh-cmn-Hant"> <!-- 更加標準的 lang 屬性寫法 http://zhi.hu/XyIa -->

          很少情況才需要加地區代碼,通常是為了強調不同地區漢語使用差異,例如:

          <p lang="zh-cmn-Hans">

          <strong lang="zh-cmn-Hans-CN">菠蘿</strong>和<strong lang="zh-cmn-Hant-TW">鳳梨</strong>其實是同一種水果。只是大陸和臺灣稱謂不同,且新加坡、馬來西亞一帶的稱謂也是不同的,稱之為<strong lang="zh-cmn-Hans-SG">黃梨</strong>。

          </p>

          優先使用 IE 最新版本和 Chrome

          <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <!-- 優先使用 IE 最新版本和 Chrome -->


          SEO 優化

          頁面描述

          每個網頁都應有一個不超過 150 個字符且能準確反映網頁內容的描述標簽。文檔

          <meta name="description" content="不超過150個字符" /> <!-- 頁面描述 -->

          頁面關鍵詞

          <meta name="keywords" content=""/> <!-- 頁面關鍵詞 -->

          定義頁面標題

          <title>標題</title>

          定義網頁作者

          <meta name="author" content="name, email@gmail.com" /> <!-- 網頁作者 -->

          定義網頁搜索引擎索引方式,robotterms是一組使用英文逗號「,」分割的值,通常有如下幾種取值:none,noindex,nofollow,all,index和follow。文檔

          <meta name="robots" content="index,follow" /> <!-- 搜索引擎抓取 -->


          可選標簽

          為移動設備添加 viewport

          <meta name ="viewport" content ="initial-scale=1, maximum-scale=3, minimum-scale=1, user-scalable=no"> <!-- `width=device-width` 會導致 iPhone 5 添加到主屏后以 WebApp 全屏模式打開頁面時出現黑邊 http://bigc.at/ios-webapp-viewport-meta.orz -->

          content 參數:

          • width viewport 寬度(數值/device-width)
          • height viewport 高度(數值/device-height)
          • initial-scale 初始縮放比例
          • maximum-scale 最大縮放比例
          • minimum-scale 最小縮放比例
          • user-scalable 是否允許用戶縮放(yes/no)
          • minimal-ui iOS 7.1 beta 2 中新增屬性(注意:iOS8 中已經刪除),可以在頁面加載時最小化上下狀態欄。這是一個布爾值,可以直接這樣寫:<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">

          iOS 設備

          添加到主屏后的標題(iOS 6 新增)

          <meta name="apple-mobile-web-app-title" content="標題"> <!-- 添加到主屏后的標題(iOS 6 新增) -->

          是否啟用 WebApp 全屏模式

          <meta name="apple-mobile-web-app-capable" content="yes" /> <!-- 是否啟用 WebApp 全屏模式 -->

          設置狀態欄的背景顏色

          <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <!-- 設置狀態欄的背景顏色,只有在 `"apple-mobile-web-app-capable" content="yes"` 時生效 -->

          content 參數:

          • default 默認值。
          • black 狀態欄背景是黑色。
          • black-translucent 狀態欄背景是黑色半透明。

          如果設置為 default 或 black ,網頁內容從狀態欄底部開始。

          如果設置為 black-translucent ,網頁內容充滿整個屏幕,頂部會被狀態欄遮擋。

          禁止數字識自動別為電話號碼

          <meta name="format-detection" content="telephone=no" /> <!-- 禁止數字識自動別為電話號碼 -->

          iOS 圖標

          rel 參數:

          apple-touch-icon 圖片自動處理成圓角和高光等效果。

          apple-touch-icon-precomposed 禁止系統自動添加效果,直接顯示設計原圖。

          iPhone 和 iTouch,默認 57x57 像素,必須有

          <link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-57x57-precomposed.png" /> <!-- iPhone 和 iTouch,默認 57x57 像素,必須有 -->

          iPad,72x72 像素,可以沒有,但推薦有

          <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/apple-touch-icon-72x72-precomposed.png" /> <!-- iPad,72x72 像素,可以沒有,但推薦有 -->

          Retina iPhone 和 Retina iTouch,114x114 像素,可以沒有,但推薦有

          <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114-precomposed.png" /> <!-- Retina iPhone 和 Retina iTouch,114x114 像素,可以沒有,但推薦有 -->

          Retina iPad,144x144 像素,可以沒有,但推薦有

          <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144x144-precomposed.png" /> <!-- Retina iPad,144x144 像素,可以沒有,但推薦有 -->

          iOS 啟動畫面

          官方文檔:https://developer.apple.com/library/ios/qa/qa1686/_index.html

          參考文章:http://wxd.ctrip.com/blog/2013/09/ios7-hig-24/

          iPad 的啟動畫面是不包括狀態欄區域的。

          iPad 豎屏 768 x 1004(標準分辨率)

          <link rel="apple-touch-startup-image" sizes="768x1004" href="/splash-screen-768x1004.png" /> <!-- iPad 豎屏 768 x 1004(標準分辨率) -->

          iPad 豎屏 1536x2008(Retina)

          <link rel="apple-touch-startup-image" sizes="1536x2008" href="/splash-screen-1536x2008.png" /> <!-- iPad 豎屏 1536x2008(Retina) -->

          iPad 橫屏 1024x748(標準分辨率)

          <link rel="apple-touch-startup-image" sizes="1024x748" href="/Default-Portrait-1024x748.png" /> <!-- iPad 橫屏 1024x748(標準分辨率) -->

          iPad 橫屏 2048x1496(Retina)

          <link rel="apple-touch-startup-image" sizes="2048x1496" href="/splash-screen-2048x1496.png" /> <!-- iPad 橫屏 2048x1496(Retina) -->

          iPhone 和 iPod touch 的啟動畫面是包含狀態欄區域的。

          iPhone/iPod Touch 豎屏 320x480 (標準分辨率)

          <link rel="apple-touch-startup-image" href="/splash-screen-320x480.png" /> <!-- iPhone/iPod Touch 豎屏 320x480 (標準分辨率) -->

          iPhone/iPod Touch 豎屏 640x960 (Retina)

          <link rel="apple-touch-startup-image" sizes="640x960" href="/splash-screen-640x960.png" /> <!-- iPhone/iPod Touch 豎屏 640x960 (Retina) -->

          iPhone 5/iPod Touch 5 豎屏 640x1136 (Retina)

          <link rel="apple-touch-startup-image" sizes="640x1136" href="/splash-screen-640x1136.png" /> <!-- iPhone 5/iPod Touch 5 豎屏 640x1136 (Retina) -->

          添加智能 App 廣告條 Smart App Banner(iOS 6+ Safari)文檔

          <meta name="apple-itunes-app" content="app-id=myAppStoreID, affiliate-data=myAffiliateData, app-argument=myURL"> <!-- 添加智能 App 廣告條 Smart App Banner(iOS 6+ Safari) -->


          Android

          Android Lollipop 中的 Chrome 39 增加 theme-color meta 標簽,用來控制選項卡顏色。

          http://updates.html5rocks.com/2014/11/Support-for-theme-color-in-Chrome-39-for-Android

          <meta name="theme-color" content="#db5945">


          Windows 8

          Windows 8 磁貼顏色

          <meta name="msapplication-TileColor" content="#000"/> <!-- Windows 8 磁貼顏色 -->

          Windows 8 磁貼圖標

          <meta name="msapplication-TileImage" content="icon.png"/> <!-- Windows 8 磁貼圖標 -->


          其他

          添加 RSS 訂閱

          <link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" /> <!-- 添加 RSS 訂閱 -->

          添加 favicon icon

          <link rel="shortcut icon" type="image/ico" href="/favicon.ico" /> <!-- 添加 favicon icon -->

          禁止 Chrome 瀏覽器中自動提示翻譯

          、定義

          <meta> 標簽提供關于 HTML 文檔的元數據。它不會顯示在頁面上,但是對于機器是可讀的??捎糜跒g覽器(如何顯示內容或重新加載頁面),搜索引擎(關鍵詞),或其他 web 服務。

          2、作用

          meta里的數據是供機器解讀的,告訴機器該如何解析這個頁面,還有一個用途是可以添加服務器發送到瀏覽器的http頭部內容,例如我們為頁面中添加如下meta標簽:


          1. <meta http-equiv="charset" content="iso-8859-1">
          2. <meta http-equiv="expires" content="31 Dec 2008">

          瀏覽器的頭部就會包括這些:


          1. charset:iso-8859-1
          2. expires:31 Dec 2008

          只有瀏覽器可以接受這些附加的頭部字段,并能以適當的方式使用它們時,這些字段才有意義。

          3、meta的必需屬性和可選屬性

          meta的必需屬性是content,當然并不是說meta標簽里一定要有content,而是當有http-equiv或name屬性的時候,一定要有content屬性對其進行說明。例如:

          必需屬性

          <meta name="keywords" content="HTML,ASP,PHP,SQL">

          這里面content里的屬性就是對keywords進行的說明,所以呢也可以理解成一個鍵值對吧,就是{keywords:"HTML,ASP,PHP,SQL"}。

          可選屬性

          在W3school中,對于meta的可選屬性說到了三個,分別是http-equiv、name和scheme??紤]到scheme不是很常用,所以就只說下前兩個屬性吧。

          http-equiv

          http-equiv屬性是添加http頭部內容,對一些自定義的,或者需要額外添加的http頭部內容,需要發送到瀏覽器中,我們就可以是使用這個屬性。在上面的meta作用中也有簡單的說明,那么現在再舉個例子。例如我們不想使用js來重定向,用http頭部內容控制,那么就可以這樣控制:

          <meta http-equiv="Refresh" content="5;url=http://blog.yangchen123h.cn" />

          在頁面中加入這個后,5秒鐘后就會跳轉到指定頁面啦,效果可看W3school的例子

          name

          第二個可選屬性是name,這個屬性是供瀏覽器進行解析,對于一些瀏覽器兼容性問題,name屬性是最常用的,當然有個前提就是瀏覽器能夠解析你寫進去的name屬性才可以,不然就是沒有意義的。還是舉個例子吧:

          <meta name="renderer" content="webkit">

          這個meta標簽的意思就是告訴瀏覽器,用webkit內核進行解析,當然前提是瀏覽器有webkit內核才可以,不然就是沒有意義的啦。當然看到這個你可能會有疑問,這個renderer是從哪里冒出來的,我要怎么知道呢?這個就是在對應的瀏覽器的開發文檔里就會有表明的,例如這個renderer是在360瀏覽器里說明的。360瀏覽器內核控制Meta標簽說明文檔

          常用meta標簽大總結

          接下來就是常用的meta標簽大總結啦,我會盡可能的做到全

          charset

          charset是聲明文檔使用的字符編碼,解決亂碼問題主要用的就是它,值得一提的是,這個charset一定要寫第一行,不然就可能會產生亂碼了。

          charset有兩種寫法


          1. <meta charset="utf-8">
          2. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

          兩個都是等效的。

          百度禁止轉碼

          百度會自動對網頁進行轉碼,這個標簽是禁止百度的自動轉碼

          <meta http-equiv="Cache-Control" content="no-siteapp" />

          SEO 優化部分


          1. <!-- 頁面標題<title>標簽(head 頭部必須) -->
          2. <title>your title</title>
          3. <!-- 頁面關鍵詞 keywords -->
          4. <meta name="keywords" content="your keywords">
          5. <!-- 頁面描述內容 description -->
          6. <meta name="description" content="your description">
          7. <!-- 定義網頁作者 author -->
          8. <meta name="author" content="author,email address">
          9. <!-- 定義網頁搜索引擎索引方式,robotterms 是一組使用英文逗號「,」分割的值,通常有如下幾種取值:none,noindex,nofollow,all,index和follow。 -->
          10. <meta name="robots" content="index,follow">

          viewport

          viewport主要是影響移動端頁面布局的,例如:


          1. <meta name="viewport" content="width=device-width, initial-scale=1.0">

          content 參數:

          • width viewport 寬度(數值/device-width)
          • height viewport 高度(數值/device-height)
          • initial-scale 初始縮放比例
          • maximum-scale 最大縮放比例
          • minimum-scale 最小縮放比例
          • user-scalable 是否允許用戶縮放(yes/no)

          各瀏覽器平臺

          Microsoft Internet Explorer


          1. <!-- 優先使用最新的ie版本 -->
          2. <meta http-equiv="x-ua-compatible" content="ie=edge">
          3. <!-- 是否開啟cleartype顯示效果 -->
          4. <meta http-equiv="cleartype" content="on">
          5. <meta name="skype_toolbar" content="skype_toolbar_parser_compatible">
          6. <!-- Pinned Site -->
          7. <!-- IE 10 / Windows 8 -->
          8. <meta name="msapplication-TileImage" content="pinned-tile-144.png">
          9. <meta name="msapplication-TileColor" content="#009900">
          10. <!-- IE 11 / Windows 9.1 -->
          11. <meta name="msapplication-config" content="ieconfig.xml">

          Google Chrome


          1. <!-- 優先使用最新的chrome版本 -->
          2. <meta http-equiv="X-UA-Compatible" content="chrome=1" />
          3. <!-- 禁止自動翻譯 -->
          4. <meta name="google" value="notranslate">

          360瀏覽器


          1. <!-- 選擇使用的瀏覽器解析內核 -->
          2. <meta name="renderer" content="webkit|ie-comp|ie-stand">

          UC手機瀏覽器

          UCBrowser_U3_API

          QQ手機瀏覽器


          1. <!-- 鎖定屏幕在特定方向 -->
          2. <meta name="x5-orientation" content="landscape/portrait">
          3. <!-- 全屏顯示 -->
          4. <meta name="x5-fullscreen" content="true">
          5. <!-- 頁面將以應用模式顯示 -->
          6. <meta name="x5-page-mode" content="app">

          Apple iOS


          1. <!-- Smart App Banner -->
          2. <meta name="apple-itunes-app" content="app-id=APP_ID,affiliate-data=AFFILIATE_ID,app-argument=SOME_TEXT">
          3. <!-- 禁止自動探測并格式化手機號碼 -->
          4. <meta name="format-detection" content="telephone=no">
          5. <!-- Add to Home Screen添加到主屏 -->
          6. <!-- 是否啟用 WebApp 全屏模式 -->
          7. <meta name="apple-mobile-web-app-capable" content="yes">
          8. <!-- 設置狀態欄的背景顏色,只有在 “apple-mobile-web-app-capable” content=”yes” 時生效 -->
          9. <meta name="apple-mobile-web-app-status-bar-style" content="black">
          10. <!-- 添加到主屏后的標題 -->
          11. <meta name="apple-mobile-web-app-title" content="App Title">

          Google Android


          1. <meta name="theme-color" content="#E64545">
          2. <!-- 添加到主屏 -->
          3. <meta name="mobile-web-app-capable" content="yes">
          4. <!-- More info: https://developer.chrome.com/multidevice/android/installtohomescreen -->

          App Links


          1. <!-- iOS -->
          2. <meta property="al:ios:url" content="applinks://docs">
          3. <meta property="al:ios:app_store_id" content="12345">
          4. <meta property="al:ios:app_name" content="App Links">
          5. <!-- Android -->
          6. <meta property="al:android:url" content="applinks://docs">
          7. <meta property="al:android:app_name" content="App Links">
          8. <meta property="al:android:package" content="org.applinks">
          9. <!-- Web Fallback -->
          10. <meta property="al:web:url" content="http://applinks.org/documentation">
          11. <!-- More info: http://applinks.org/documentation/ -->

          最后——移動端常用的meta


          1. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
          2. <meta name="apple-mobile-web-app-capable" content="yes" />
          3. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
          4. <meta name="format-detection"content="telephone=no, email=no" />
          5. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
          6. <meta name="apple-mobile-web-app-capable" content="yes" /><!-- 刪除蘋果默認的工具欄和菜單欄 -->
          7. <meta name="apple-mobile-web-app-status-bar-style" content="black" /><!-- 設置蘋果工具欄顏色 -->
          8. <meta name="format-detection" content="telphone=no, email=no" /><!-- 忽略頁面中的數字識別為電話,忽略email識別 -->
          9. <!-- 啟用360瀏覽器的極速模式(webkit) -->
          10. <meta name="renderer" content="webkit">
          11. <!-- 避免IE使用兼容模式 -->
          12. <meta http-equiv="X-UA-Compatible" content="IE=edge">
          13. <!-- 針對手持設備優化,主要是針對一些老的不識別viewport的瀏覽器,比如黑莓 -->
          14. <meta name="HandheldFriendly" content="true">
          15. <!-- 微軟的老式瀏覽器 -->
          16. <meta name="MobileOptimized" content="320">
          17. <!-- uc強制豎屏 -->
          18. <meta name="screen-orientation" content="portrait">
          19. <!-- QQ強制豎屏 -->
          20. <meta name="x5-orientation" content="portrait">
          21. <!-- UC強制全屏 -->
          22. <meta name="full-screen" content="yes">
          23. <!-- QQ強制全屏 -->
          24. <meta name="x5-fullscreen" content="true">
          25. <!-- UC應用模式 -->
          26. <meta name="browsermode" content="application">
          27. <!-- QQ應用模式 -->
          28. <meta name="x5-page-mode" content="app">
          29. <!-- windows phone 點擊無高光 -->
          30. <meta name="msapplication-tap-highlight" content="no">
          31. <!-- 適應移動端end -->

          .meta 標簽介紹

          <!DOCTYPE html>
          <html>
              <head>
                  <meta charset="utf-8" name="keywords" content="HTML,前端,css">
                  <title></title>
              </head>
              <body>
              </body>
          </html>

          meta主要設置網頁中的一些元數據,元數據不是給用戶看的

          charset: 指定網頁的字符集

          name: 指定的數據的名稱

          content: 指定的數據的內容


          2. meta 舉例使用

          1 - 定義文檔關鍵詞,用于搜索引擎:

          <meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">

          2 - 定義web頁面描述: <meta name="description" content="">

          3 - 定義頁面作者:

          <meta name="author" content="Tigger">

          4 - 每10秒刷新頁面:

          <meta http-equiv="refresh" content="10">

          5 - 頁面重定向:

          <meta http-equiv="refresh" content="10;url=https://www.baidu.com">


          3.meta 標簽的屬性

          meta標簽屬性.png


          `


          主站蜘蛛池模板: 成人区人妻精品一区二区不卡视频| 3D动漫精品啪啪一区二区下载| 久久青草国产精品一区| AV怡红院一区二区三区| 78成人精品电影在线播放日韩精品电影一区亚洲 | 日韩精品一区二区三区中文精品| 色综合视频一区二区三区| 性色AV一区二区三区| 国产一区二区三区高清在线观看| 亚洲日韩精品国产一区二区三区| 一区二区在线视频| 亚洲爆乳无码一区二区三区| 一区二区不卡视频在线观看| 国产嫖妓一区二区三区无码| 欧洲精品免费一区二区三区| 一区国产传媒国产精品| 精品不卡一区二区| 国产精品一级香蕉一区| 91精品一区二区三区在线观看| 末成年女AV片一区二区| 色偷偷久久一区二区三区| 精品国产一区二区三区免费| 久久久久无码国产精品一区 | 视频一区在线免费观看| 亚洲熟女www一区二区三区| 人妻无码一区二区不卡无码av| 日韩人妻无码一区二区三区99| 无码国产精品一区二区免费3p| 精品日韩亚洲AV无码一区二区三区| 久久国产精品最新一区| 在线播放国产一区二区三区 | 精品久久综合一区二区| 国模极品一区二区三区| 日本福利一区二区| 日本一区二区在线不卡| 亚洲综合色自拍一区| 精品亚洲AV无码一区二区三区 | 日韩免费视频一区| 精品91一区二区三区| 精品视频一区二区三区| 亚洲不卡av不卡一区二区|