校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁 > 知識(shí)庫 > 使用SWFUpload實(shí)現(xiàn)無刷新上傳圖片

使用SWFUpload實(shí)現(xiàn)無刷新上傳圖片

熱門標(biāo)簽:t3出行地圖標(biāo)注怎么做 400電話辦理最優(yōu)質(zhì) 河南語音外呼系統(tǒng)公司 河北網(wǎng)絡(luò)回?fù)芡夂粝到y(tǒng) 威海電銷 關(guān)于宗地圖標(biāo)注技術(shù)規(guī)范 400免費(fèi)電話怎么辦理 寧夏機(jī)器人電銷 外呼電銷機(jī)器人軟件

在做項(xiàng)目時(shí),需要用到一個(gè)圖片的無刷新上傳,之前聽說過SWFUpload,于是想要通過SWFUpload來進(jìn)行圖片的無刷新上傳,由于我的項(xiàng)目屬于是ASP.NET項(xiàng)目,所以本文著重講解ASP.NET 的使用,個(gè)人感覺示例基本給的很清晰,參考文檔進(jìn)行開發(fā),并非難事

0. 首先下載swfUpload 包,在下載的包中有samples文件夾,samples下有demos文件夾,打開demos文件夾可看到如下圖所示結(jié)構(gòu)

我們待會(huì)會(huì)用到的包括,swfupload目錄下的文件,css不建議使用以避免與自己寫的CSS相沖突使得頁面布局完全亂掉,如果要添加樣式最好自己寫

打開 applicationdemo.net目錄會(huì)看到這樣的結(jié)構(gòu)

打開index.html可以看到這樣的頁面

點(diǎn)擊NET2.0下的Application Demo C#項(xiàng)

添加資源引用

將要引用的資源包含到項(xiàng)目中(包括swfupload文件夾下的文件與,demo下的資源文件,handlers.js是在demo中js目錄下的js文件)

首先熟悉demo,將demo中的頁面包含到項(xiàng)目中

在Defaut.aspx頁面中使用swfUpload組件進(jìn)行圖片的無刷新上傳直接運(yùn)行,看效果,大概了解基本過程

修改handlers.js文件

我的項(xiàng)目文件結(jié)構(gòu)大概是這樣的

我的處理文件上傳的頁面是ImageUploadHandler.ashx,獲取縮略圖的頁面是GetThumbHandler.ashx,Thumbnail.cs是demo中App_Code文件夾中的文件,個(gè)人覺得像這種只處理邏輯功能而不展現(xiàn)頁面的最好都用一般處理程序來實(shí)現(xiàn)。由于哪個(gè)文件處理上傳哪個(gè)文件生成縮略圖已經(jīng)在handlers.js文件中寫死了,所以必須要修改handlers.js文件以能夠使頁面正常運(yùn)行

最終修改版匯總

Thumbnail

/// summary>
/// 縮略圖
/// /summary>
public class Thumbnail
{
  public Thumbnail(string id, byte[] data)
  {
    this.ID = id;
    this.Data = data;
  }

  private string id;

  /// summary>
  /// 圖片id
  /// /summary>
  public string ID
  {
    get
    {
      return this.id;
    }
    set
    {
      this.id = value;
    }
  }

  private byte[] thumbnail_data;

  /// summary>
  /// 圖片的二進(jìn)制數(shù)據(jù)
  /// /summary>
  public byte[] Data
  {
    get
    {
      return this.thumbnail_data;
    }
    set
    {
      this.thumbnail_data = value;
    }
  }

  private string contentType;

  /// summary>
  /// 圖片對(duì)應(yīng)的MIME類型
  /// /summary>
  public string ContentType
  {
    get
    {
      return contentType;
    }

    set
    {
      contentType = value;
    }
  }
}

Html Demo

!DOCTYPE html>

html xmlns="http://www.w3.org/1999/xhtml">
head>
  title>Upload Images/title>
  script src="swfupload/swfupload.js">/script>
  script src="swfupload/handlers.js">/script>
  script>
    //注:div的id名稱最好不要改,要改的話在handlers.js文件中也要進(jìn)行修改,div的名稱已經(jīng)在handlers.js文件中寫死
    var swfu;
    window.onload = function () {
      swfu = new SWFUpload({
        // 后臺(tái)設(shè)置,設(shè)置處理上傳的頁面
        upload_url: "/Handlers/ImageUploadHandler.ashx",
        // 文件上傳大小限制設(shè)置
        file_size_limit: "3 MB",
        //文件類型設(shè)置,多種格式以英文中的分號(hào)分開
        file_types: "*.jpg;*.png",
        //文件描述,與彈出的選擇文件對(duì)話框相關(guān)
        file_types_description : "Images file",
        //設(shè)置上傳文件數(shù)量限制
        file_upload_limit: "1",

        //事件處理程序,最好不要改,事件處理程序已在handlers.js文件中定義
        // Event Handler Settings - these functions as defined in Handlers.js
        // The handlers are not part of SWFUpload but are part of my website and control how
        // my website reacts to the SWFUpload events.
        file_queue_error_handler : fileQueueError,
        file_dialog_complete_handler : fileDialogComplete,
        upload_progress_handler : uploadProgress,
        upload_error_handler : uploadError,
        upload_success_handler : uploadSuccess,
        upload_complete_handler : uploadComplete,

        // 上傳按鈕設(shè)置
        button_image_url : "/swfupload/images/XPButtonNoText_160x22.png",
        button_placeholder_id: "spanButtonPlaceholder",
        button_width: 160,
        button_height: 22,
        button_text : '請選擇圖片 (最大3M)',
        button_text_style : '.button { font-family: Helvetica, Arial, sans-serif; font-size: 14pt; } .buttonSmall { font-size: 10pt; }',
        button_text_top_padding: 1,
        button_text_left_padding: 5,

        // swfupload.swf flash設(shè)置
        flash_url : "/swfupload/swfupload.swf",  
        //自定義的其他設(shè)置
        custom_settings : {
          upload_target: "divFileProgressContainer"
        },
        // 是否開啟調(diào)試模式,調(diào)試時(shí)可以設(shè)置為true,發(fā)布時(shí)設(shè)置為false
        debug: false
      });
    }
  /script>
/head>
body>
  form id="form1">
    div id="content">
        h2>Upload Images Demo/h2>
    
    div id="swfu_container" style="margin: 0px 10px;">
      div>
        span id="spanButtonPlaceholder">/span>
      /div>
      div id="divFileProgressContainer" style="height: 75px;">/div>
      div id="thumbnails">/div>
    /div>
    /div>
  /form>
/body>
/html>

ImageUploadHandler

/// summary>
  /// 圖片上傳處理
  /// /summary>
  public class ImageUploadHandler : IHttpHandler, IRequiresSessionState
  {
    /// summary>
    /// 記錄日志 logger
    /// /summary>
    private static Common.LogHelper logger = new Common.LogHelper(typeof(ImageUploadHandler));
    public void ProcessRequest(HttpContext context)
    {
      context.Response.ContentType = "text/plain";
      System.Drawing.Image thumbnail_image = null;
      System.Drawing.Image original_image = null;
      System.Drawing.Bitmap final_image = null;
      System.Drawing.Graphics graphic = null;
      MemoryStream ms = null;
      try
      {
        //驗(yàn)證用戶是否登錄,是否有權(quán)限上傳
        if (context.Session["User"]==null)
        {
          context.Response.Write("沒有上傳圖片的權(quán)限!");
          context.Response.End();
          return;
        }
        //獲取上傳文件
        HttpPostedFile image_upload = context.Request.Files["Filedata"];
        //獲取文件擴(kuò)展名
        string fileExt = System.IO.Path.GetExtension(image_upload.FileName).ToLower();
        //驗(yàn)證文件擴(kuò)展名是否符合要求,是否是允許的圖片格式
        if (fileExt!=".jpg"fileExt!=".png")
        {
          return;
        }
        //當(dāng)前時(shí)間字符串
        string timeString = DateTime.Now.ToString("yyyyMMddHHmmssfff");
        //圖片保存虛擬路徑構(gòu)建
        string path = "/Upload/"+timeString + fileExt;
        //保存到Session 變量中
        context.Session["imgPath"] = path;
        //獲取、構(gòu)建要上傳文件的物理路徑
        string serverPath = context.Server.MapPath("~/"+path);
        //保存圖片到服務(wù)器
        image_upload.SaveAs(serverPath);
        //記錄日志
        logger.Debug("圖片上傳成功!");
        #region 生成縮略圖

        // 獲取上傳圖片的文件流
        original_image = System.Drawing.Image.FromStream(image_upload.InputStream);

        // 根據(jù)原圖計(jì)算縮略圖的寬度和高度,及縮放比例等~~
        int width = original_image.Width;
        int height = original_image.Height;
        int target_width = 100;
        int target_height = 100;
        int new_width, new_height;

        float target_ratio = (float)target_width / (float)target_height;
        float image_ratio = (float)width / (float)height;

        if (target_ratio > image_ratio)
        {
          new_height = target_height;
          new_width = (int)Math.Floor(image_ratio * (float)target_height);
        }
        else
        {
          new_height = (int)Math.Floor((float)target_width / image_ratio);
          new_width = target_width;
        }

        new_width = new_width > target_width ? target_width : new_width;
        new_height = new_height > target_height ? target_height : new_height;

        //創(chuàng)建縮略圖
        final_image = new System.Drawing.Bitmap(target_width, target_height);
        graphic = System.Drawing.Graphics.FromImage(final_image);
        graphic.FillRectangle(new System.Drawing.SolidBrush(System.Drawing.Color.Black), new System.Drawing.Rectangle(0, 0, target_width, target_height));
        int paste_x = (target_width - new_width) / 2;
        int paste_y = (target_height - new_height) / 2;
        graphic.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic; /* new way */
                                                      //graphic.DrawImage(thumbnail_image, paste_x, paste_y, new_width, new_height);
        graphic.DrawImage(original_image, paste_x, paste_y, new_width, new_height);

        // Store the thumbnail in the session (Note: this is bad, it will take a lot of memory, but this is just a demo)
        ms = new MemoryStream();
        //將縮略圖保存到內(nèi)存流中
        final_image.Save(ms, System.Drawing.Imaging.ImageFormat.Png);

        #endregion

        //建立 Thumbnail對(duì)象
        Thumbnail thumb = new Thumbnail(timeString, ms.GetBuffer());
        //保存縮略圖到Session 中,也可以保存成文件,保存為圖片
        context.Session["file_info"] = thumb;
        //操作成功,返回HTTP狀態(tài)碼設(shè)置為 200
        context.Response.StatusCode = 200;
        //輸出縮略圖的id,在生成縮略圖時(shí)要用到
        context.Response.Write(thumb.ID);
      }
      catch(Exception ex)
      {
        // 出現(xiàn)異常,返回 500,服務(wù)器內(nèi)部錯(cuò)誤
        context.Response.StatusCode = 500;
        //記錄錯(cuò)誤日志
        logger.Error(ex);
      }
      finally
      {
        // 釋放資源
        if (final_image != null) final_image.Dispose();
        if (graphic != null) graphic.Dispose();
        if (original_image != null) original_image.Dispose();
        if (thumbnail_image != null) thumbnail_image.Dispose();
        if (ms != null) ms.Close();
        context.Response.End();
      }
    }

    public bool IsReusable
    {
      get
      {
        return false;
      }
    }
  }

GetThumbHandler

/// summary>
  /// 獲取縮略圖
  /// /summary>
  public class GetThumbHandler : IHttpHandler, IRequiresSessionState
  {
    public void ProcessRequest(HttpContext context)
    {
      context.Response.ContentType = "text/plain";
      //獲取縮略圖id
      string id = context.Request.QueryString["id"];
      //id為空則返回錯(cuò)誤
      if (String.IsNullOrEmpty(id))
      {
        context.Response.StatusCode = 404;
        context.Response.Write("Not Found");
        context.Response.End();
        return;
      }
      //從Session中獲取縮略圖文件
      Thumbnail thumb= context.Session["file_info"] as Thumbnail;
      //判斷id是否一致
      if (thumb.ID == id)
      {
        //重新設(shè)置響應(yīng)MIME 類型
        context.Response.ContentType = "image/png";
        //輸出二進(jìn)制流信息
        context.Response.BinaryWrite(thumb.Data);
        //截止輸出
        context.Response.End();
        return;
      }

      //沒有找到相應(yīng)圖片,返回404
      context.Response.StatusCode = 404;
      context.Response.Write("Not Found");
      context.Response.End();
    }

    public bool IsReusable
    {
      get
      {
        return false;
      }
    }
  }

handlers.js 文件

function fileQueueError(file, errorCode, message) {
  try {
    var imageName = "error.gif";
    var errorName = "";
    if (errorCode == SWFUpload.errorCode_QUEUE_LIMIT_EXCEEDED) {
      errorName = "上傳文件過多!";
    }

    if (errorName != "") {
      alert(errorName);
      return;
    }

    switch (errorCode) {
    case SWFUpload.QUEUE_ERROR.ZERO_BYTE_FILE:
      imageName = "zerobyte.gif";
      break;
    case SWFUpload.QUEUE_ERROR.FILE_EXCEEDS_SIZE_LIMIT:
      imageName = "toobig.gif";
      break;
    case SWFUpload.QUEUE_ERROR.ZERO_BYTE_FILE:
    case SWFUpload.QUEUE_ERROR.INVALID_FILETYPE:
    default:
      alert(message);
      break;
    }
    //添加圖片,注意路徑
    addImage("/swfupload/images/" + imageName);

  } catch (ex) {
    this.debug(ex);
  }

}

function fileDialogComplete(numFilesSelected, numFilesQueued) {
  try {
    if (numFilesQueued > 0) {
      this.startUpload();
    }
  } catch (ex) {
    this.debug(ex);
  }
}

function uploadProgress(file, bytesLoaded) {

  try {
    var percent = Math.ceil((bytesLoaded / file.size) * 100);

    var progress = new FileProgress(file, this.customSettings.upload_target);
    progress.setProgress(percent);
    if (percent === 100) {
      progress.setStatus("正在創(chuàng)建縮略圖...");
      progress.toggleCancel(false, this);
    } else {
      progress.setStatus("正在上傳...");
      progress.toggleCancel(true, this);
    }
  } catch (ex) {
    this.debug(ex);
  }
}

function uploadSuccess(file, serverData) {
  try {
    //添加縮略圖~~~
    //修改這里來設(shè)置生成縮略圖的頁面
    addImage("/Handlers/GetThumbHandler.ashx?id=" + serverData);
    var progress = new FileProgress(file, this.customSettings.upload_target);
    progress.setStatus("縮略圖創(chuàng)建成功!");
    progress.toggleCancel(false);
  } catch (ex) {
    this.debug(ex);
  }
}

function uploadComplete(file) {
  try {
    /* I want the next upload to continue automatically so I'll call startUpload here */
    if (this.getStats().files_queued > 0) {
      this.startUpload();
    } else {
      var progress = new FileProgress(file, this.customSettings.upload_target);
      progress.setComplete();
      progress.setStatus("圖片上傳成功");
      progress.toggleCancel(false);
    }
  } catch (ex) {
    this.debug(ex);
  }
}

function uploadError(file, errorCode, message) {
  var imageName = "error.gif";
  var progress;
  try {
    switch (errorCode) {
    case SWFUpload.UPLOAD_ERROR.FILE_CANCELLED:
      try {
        progress = new FileProgress(file, this.customSettings.upload_target);
        progress.setCancelled();
        progress.setStatus("上傳操作被取消");
        progress.toggleCancel(false);
      }
      catch (ex1) {
        this.debug(ex1);
      }
      break;
    case SWFUpload.UPLOAD_ERROR.UPLOAD_STOPPED:
      try {
        progress = new FileProgress(file, this.customSettings.upload_target);
        progress.setCancelled();
        progress.setStatus("上傳停止!");
        progress.toggleCancel(true);
      }
      catch (ex2) {
        this.debug(ex2);
      }
    case SWFUpload.UPLOAD_ERROR.UPLOAD_LIMIT_EXCEEDED:
      imageName = "uploadlimit.gif";
      break;
    default:
      alert(message);
      break;
    }

    addImage("/swfupload/images/" + imageName);

  } catch (ex3) {
    this.debug(ex3);
  }

}

function addImage(src) {
  var newImg = document.createElement("img");
  newImg.style.margin = "5px";
  document.getElementById("thumbnails").appendChild(newImg);
  if (newImg.filters) {
    try {
      newImg.filters.item("DXImageTransform.Microsoft.Alpha").opacity = 0;
    } catch (e) {
      // If it is not set initially, the browser will throw an error. This will set it if it is not set yet.
      newImg.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=' + 0 + ')';
    }
  } else {
    newImg.style.opacity = 0;
  }

  newImg.onload = function () {
    fadeIn(newImg, 0);
  };
  newImg.src = src;
}

function fadeIn(element, opacity) {
  var reduceOpacityBy = 5;
  var rate = 30;  // 15 fps


  if (opacity  100) {
    opacity += reduceOpacityBy;
    if (opacity > 100) {
      opacity = 100;
    }

    if (element.filters) {
      try {
        element.filters.item("DXImageTransform.Microsoft.Alpha").opacity = opacity;
      } catch (e) {
        // If it is not set initially, the browser will throw an error. This will set it if it is not set yet.
        element.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=' + opacity + ')';
      }
    } else {
      element.style.opacity = opacity / 100;
    }
  }

  if (opacity  100) {
    setTimeout(function () {
      fadeIn(element, opacity);
    }, rate);
  }
}

/* ******************************************
 *  FileProgress Object
 *  Control object for displaying file info
 * ****************************************** */

function FileProgress(file, targetID) {
  this.fileProgressID = "divFileProgress";

  this.fileProgressWrapper = document.getElementById(this.fileProgressID);
  if (!this.fileProgressWrapper) {
    this.fileProgressWrapper = document.createElement("div");
    this.fileProgressWrapper.className = "progressWrapper";
    this.fileProgressWrapper.id = this.fileProgressID;

    this.fileProgressElement = document.createElement("div");
    this.fileProgressElement.className = "progressContainer";

    var progressCancel = document.createElement("a");
    progressCancel.className = "progressCancel";
    progressCancel.href = "#";
    progressCancel.style.visibility = "hidden";
    progressCancel.appendChild(document.createTextNode(" "));

    var progressText = document.createElement("div");
    progressText.className = "progressName";
    progressText.appendChild(document.createTextNode(file.name));

    var progressBar = document.createElement("div");
    progressBar.className = "progressBarInProgress";

    var progressStatus = document.createElement("div");
    progressStatus.className = "progressBarStatus";
    progressStatus.innerHTML = "nbsp;";

    this.fileProgressElement.appendChild(progressCancel);
    this.fileProgressElement.appendChild(progressText);
    this.fileProgressElement.appendChild(progressStatus);
    this.fileProgressElement.appendChild(progressBar);

    this.fileProgressWrapper.appendChild(this.fileProgressElement);

    document.getElementById(targetID).appendChild(this.fileProgressWrapper);
    fadeIn(this.fileProgressWrapper, 0);

  } else {
    this.fileProgressElement = this.fileProgressWrapper.firstChild;
    this.fileProgressElement.childNodes[1].firstChild.nodeValue = file.name;
  }

  this.height = this.fileProgressWrapper.offsetHeight;

}
FileProgress.prototype.setProgress = function (percentage) {
  this.fileProgressElement.className = "progressContainer green";
  this.fileProgressElement.childNodes[3].className = "progressBarInProgress";
  this.fileProgressElement.childNodes[3].style.width = percentage + "%";
};
FileProgress.prototype.setComplete = function () {
  this.fileProgressElement.className = "progressContainer blue";
  this.fileProgressElement.childNodes[3].className = "progressBarComplete";
  this.fileProgressElement.childNodes[3].style.width = "";

};
FileProgress.prototype.setError = function () {
  this.fileProgressElement.className = "progressContainer red";
  this.fileProgressElement.childNodes[3].className = "progressBarError";
  this.fileProgressElement.childNodes[3].style.width = "";

};
FileProgress.prototype.setCancelled = function () {
  this.fileProgressElement.className = "progressContainer";
  this.fileProgressElement.childNodes[3].className = "progressBarError";
  this.fileProgressElement.childNodes[3].style.width = "";

};
FileProgress.prototype.setStatus = function (status) {
  this.fileProgressElement.childNodes[2].innerHTML = status;
};
FileProgress.prototype.toggleCancel = function (show, swfuploadInstance) {
  this.fileProgressElement.childNodes[0].style.visibility = show ? "visible" : "hidden";
  if (swfuploadInstance) {
    var fileID = this.fileProgressID;
    this.fileProgressElement.childNodes[0].onclick = function () {
      swfuploadInstance.cancelUpload(fileID);
      return false;
    };
  }
};

以上所述就是本文的全部內(nèi)容了,希望對(duì)大家學(xué)習(xí)asp.net能夠有所幫助。

您可能感興趣的文章:
  • PHP swfupload圖片上傳的實(shí)例代碼
  • SwfUpload在IE10上不出現(xiàn)上傳按鈕的解決方法
  • swfupload ajax無刷新上傳圖片實(shí)例代碼
  • phpcms模塊開發(fā)之swfupload的使用介紹
  • SWFUpload與CI不能正確上傳識(shí)別文件MIME類型解決方法分享
  • 為SWFUpload增加ASP版本的上傳處理程序
  • swfupload 多文件上傳實(shí)現(xiàn)代碼
  • swfupload使用代碼說明
  • 文件上傳之SWFUpload插件(代碼)
  • 文件上傳插件SWFUpload的使用指南

標(biāo)簽:樂山 固原 賀州 廣元 池州 咸寧 淮北 吉林

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《使用SWFUpload實(shí)現(xiàn)無刷新上傳圖片》,本文關(guān)鍵詞  使用,SWFUpload,實(shí)現(xiàn),無,刷新,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《使用SWFUpload實(shí)現(xiàn)無刷新上傳圖片》相關(guān)的同類信息!
  • 本頁收集關(guān)于使用SWFUpload實(shí)現(xiàn)無刷新上傳圖片的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃
    亚洲精品大片www| 欧美日本高清视频在线观看| 中文字幕人成不卡一区| 极品少妇一区二区| 欧美日韩国产一级片| 国产成人精品免费看| 国产综合色产在线精品| 肉色丝袜一区二区| 久久成人免费电影| 丝袜亚洲精品中文字幕一区| 夜夜操天天操亚洲| 亚洲国产欧美日韩另类综合| 亚洲精品成a人| 亚洲电影第三页| 国产精品丝袜久久久久久app| 这里是久久伊人| 国产精品全国免费观看高清| 亚洲成人激情社区| 99国产精品国产精品毛片| 欧美一区二区免费| 亚洲天堂a在线| 国产传媒日韩欧美成人| 欧美亚洲动漫精品| 亚洲色图一区二区| 午夜欧美大尺度福利影院在线看| 国产精品一二三在| 国产精品一级在线| 国产在线视频不卡二| 宅男在线国产精品| 亚洲资源中文字幕| 色综合中文字幕| 中文字幕一区在线| 不卡欧美aaaaa| 欧美国产1区2区| 国产乱子轮精品视频| 精品99一区二区| 自拍av一区二区三区| 国产精品一卡二卡在线观看| 欧美亚洲动漫制服丝袜| 精品国产成人系列| 日韩成人一级大片| 日韩欧美一级二级三级久久久| 青青草97国产精品免费观看| 欧美日韩一区二区三区视频| 亚洲欧美日韩久久精品| 欧美日韩激情一区二区| 极品瑜伽女神91| 国产欧美一区二区精品性 | 午夜国产精品影院在线观看| 欧美电影在哪看比较好| 国产精品久久看| 在线观看日产精品| 日本va欧美va精品| 国产三区在线成人av| 欧美日韩在线三级| 韩国精品久久久| 亚洲高清在线视频| 国产精品乱人伦| 欧美视频精品在线观看| 国产亚洲自拍一区| 国产精品久久久久婷婷| 日韩精品一区二区在线观看| av在线不卡电影| 久久精品免费看| 一区二区三区四区五区视频在线观看| 日韩欧美一区二区免费| 欧美视频一区二区三区四区| gogogo免费视频观看亚洲一| 国产精品一区一区三区| 青娱乐精品在线视频| 一区二区欧美国产| 亚洲另类在线制服丝袜| 中文字幕乱码一区二区免费| 久久精品一区二区三区不卡 | 成人国产精品免费网站| 国产老妇另类xxxxx| 激情都市一区二区| 国产麻豆成人传媒免费观看| 亚洲国产一区二区视频| 最新中文字幕一区二区三区| 国产日韩欧美高清| 国产精品婷婷午夜在线观看| 国产日韩欧美不卡| 久久久久久久av麻豆果冻| 精品国产人成亚洲区| 夜夜揉揉日日人人青青一国产精品| 亚洲午夜一二三区视频| 黑人精品欧美一区二区蜜桃| 欧美日韩一二三| 精品国产91九色蝌蚪| 亚洲免费观看视频| 国产精品一二三区| 欧亚一区二区三区| 中文字幕日韩精品一区| 日精品一区二区三区| 成人午夜激情影院| 久久九九久精品国产免费直播| 三级欧美在线一区| 国产成人av电影在线观看| 日韩精品资源二区在线| 一区二区三区日本| 91视频国产观看| 夜夜精品浪潮av一区二区三区| 99r国产精品| 一区在线中文字幕| 成人高清免费在线播放| 国产日韩影视精品| 99re这里只有精品6| 成人欧美一区二区三区黑人麻豆| 九九久久精品视频| 久久婷婷国产综合国色天香| 美女网站色91| 欧美激情综合五月色丁香| 国产成人自拍网| 国产精品丝袜在线| 成人av中文字幕| 亚洲二区视频在线| 日韩精品一区二区在线| 99久久精品国产观看| 亚洲自拍都市欧美小说| 日韩一卡二卡三卡四卡| 国产麻豆精品95视频| 一区二区三区中文在线| 欧美精品自拍偷拍动漫精品| 久久97超碰国产精品超碰| 国产精品女上位| 欧美一区二区三区视频在线观看| 久久精品国产亚洲aⅴ| 国产精品久久久久久亚洲伦| 99精品视频在线观看免费| 一区二区三区日韩精品视频| 欧美日韩mp4| 99久久99久久精品国产片果冻| 日韩avvvv在线播放| 亚洲精品第1页| 国产精品理伦片| 中文幕一区二区三区久久蜜桃| 制服视频三区第一页精品| 成人一级片网址| 久久99这里只有精品| 一区二区三区四区av| 国产精品久久久久久久久久免费看| 欧美一区二区视频观看视频| 91无套直看片红桃| 91亚洲国产成人精品一区二区三 | 久久夜色精品国产噜噜av| 欧美色图在线观看| 国产a久久麻豆| 国产精品夜夜嗨| 精品一区二区免费视频| 久久精品国产免费| 久久精品国产第一区二区三区| 日日欢夜夜爽一区| 日韩激情av在线| 午夜视频在线观看一区| 天堂精品中文字幕在线| 蜜臀av国产精品久久久久| 亚洲一区二区综合| 五月综合激情网| 国产又黄又大久久| 成人毛片视频在线观看| 99视频有精品| 欧美一级午夜免费电影| 精品国精品自拍自在线| 中文字幕亚洲区| 国内外成人在线视频| av高清不卡在线| 精品成人一区二区三区四区| 中文字幕在线不卡国产视频| 天天影视色香欲综合网老头| 国产美女视频91| 欧美探花视频资源| 国产精品色在线| 日韩av不卡一区二区| 国产最新精品免费| 91福利在线播放| 久久尤物电影视频在线观看| 亚洲制服丝袜av| 一本色道久久加勒比精品| 久久免费美女视频| 久久精品国产一区二区三区免费看| 欧日韩精品视频| 国产精品不卡一区二区三区| 精品制服美女丁香| 日韩欧美一级在线播放| 久久不见久久见免费视频7 | 国产综合色在线| 精品日韩在线一区| 九九九精品视频| 欧美欧美欧美欧美首页| 日日摸夜夜添夜夜添国产精品| 欧美日韩国产一区二区三区地区| 一区二区三区在线观看视频| 日本乱人伦一区| 无码av中文一区二区三区桃花岛| 精品国产免费人成电影在线观看四季 | 91视频com| 亚洲大尺度视频在线观看| 欧美无砖砖区免费| 蜜臀av性久久久久蜜臀av麻豆|