亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 編程 > JavaScript > 正文

js Canvas實現的日歷時鐘案例分享

2019-11-19 18:16:41
字體:
來源:轉載
供稿:網友

Html:

<!doctype html><html><head><meta charset="UTF-8"><title>Document</title><script src="requestNextAnimationFrame.js"></script><script src="calendarWithTime.js"></script></head><body><style>* {margin:0; padding:0;}#calendarWithTime{ margin : 0;}</style><canvas id="calendarWithTime"></canvas></body></html>

js:

;var calendarWithTime = function(){ v = navigator.userAgent.toLowerCase().indexOf("android") != -1 || navigator.userAgent.toLowerCase().indexOf("iphone") != -1 || navigator.userAgent.toLowerCase().indexOf("ipad") != -1; // 瀏覽器可見區域 appWidth = (window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth); appHeight = (window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight) - 3; // chrome下,高度一樣是,會出現下拉滾動條 // 中心點 centerPoint = {'x':appWidth*0.5,'y':appHeight*0.5}; // 動畫用 lastFpsUpdateTime = (+new Date); // canvas對象 caObj = null; // canvas context對象 ctxtObj = null; // 現在時間 timeNow = ""; // 開始年份 startY = 1988; init = function(){  window.onload=function(){this.initCanvas();} }(); getDomId = function(id){return document.getElementById(id);} initCanvas = function(id){  this.caObj = this.getDomId("calendarWithTime");  this.ctxtObj = this.caObj.getContext("2d");  // 全屏canvas  this.caObj.style.width = (this.appWidth+'px');  this.caObj.style.height = (this.appHeight+'px');  this.caObj.width = this.appWidth;  this.caObj.height = this.appHeight;  if (v) {   caObj.style.border = "none";  }  // 開始年份  startY = Math.floor((new Date()).getFullYear() / 8) * 8;  // test   // startY = Math.floor(2010 / 8) * 8;  this.lastFpsUpdateTime = (+new Date);  this.animate(); } doDraw = function(){  this.ctxtObj.clearRect(0, 0, this.caObj.width, this.caObj.height);  var date = new Date();  // test  /*date.setDate(29);  date.setMonth(3);  date.setFullYear(2010);*/  var afterGap = 8 - (date.getFullYear() - startY);  var allYears = date.getFullYear()-this.startY+afterGap;  var allDays = this.getCountDays(date.getFullYear(),date.getMonth());  this.doDrawDayPanel(31,allDays);  this.doDrawMonthPanel();  this.doDrawYearPanel(this.startY,date.getFullYear(),afterGap);  // 畫時間針  this.doDrawTPanel();  this.drawYMDHMS(0,0.35,0,0.1,date.getSeconds(),0,30,'s','');  this.drawYMDHMS(0,0.3,0,0.05,date.getMinutes(),date.getSeconds()/60,30,'m','');  this.drawYMDHMS(0,0.25,0,0.03,date.getHours() % 12,date.getMinutes()/60,6,'h','');  this.drawYMDHMS(0.4,0.7,0.4,0.66,date.getDate(),date.getHours()/24,Math.ceil(31*0.5),'d',date.getDate());  this.drawYMDHMS(0.4,0.6,0.4,0.568,(date.getMonth()),date.getDate()/(allDays+1),6,'M',date.getMonth()+1);  this.drawYMDHMS(0.4,0.55,0.4,0.52,(date.getFullYear() - this.startY),(date.getMonth()+1)/13,Math.ceil(allYears*0.5),'y',date.getFullYear());  // 顯示時間  this.getTimeNow();  this.ctxtObj.save();  this.ctxtObj.beginPath();  this.ctxtObj.fillStyle = "#369";  this.ctxtObj.strokeStyle = "#369";  this.ctxtObj.font = "30px bold 微軟雅黑";  this.ctxtObj.textAlign="start";  this.ctxtObj.textBaseline="top";  this.ctxtObj.fillText(this.timeNow,0,0);  this.ctxtObj.strokeText(this.timeNow,0,0);  this.ctxtObj.restore();  /*  fillText(String text,float x,float y,[float maxwidth]):填充字符串  strokeText(String text,float x,float y,[float maxwidth]):繪制邊框  font="bold 45px 宋體"  textAlign:設置繪制字符串的水平對齊方式,start|end|right|center  textBaseline:垂直對齊方式:top|hanging|middle|alphabetic|bottom  */ } doChangeToFront = function(i,x){  // 轉換為畫面值  return (i +Math.ceil(x/4)) % 60; } doChangeToEnd = function(i,x){  // 轉換為后臺值  return (i +Math.ceil(x/4*3)) % 60; } doDrawTPanel = function(){  // 畫時鐘面板  var minsLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.3;  var mineLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.32;  var maxsLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.28;  var maxeLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.34;  var gap = Math.PI/30;  futoNum = 5;  this.ctxtObj.save();   this.ctxtObj.fillStyle = "#369";  this.ctxtObj.strokeStyle = "#369";  for(var i =0;i<=59;i++){   if(i % futoNum==0){    sLen = maxsLen;    eLen = maxeLen;   }else{    sLen = minsLen;    eLen = mineLen;   }   this.ctxtObj.beginPath();   this.ctxtObj.moveTo(Math.cos(i*gap)*sLen + this.centerPoint.x ,Math.sin(i*gap)*sLen + this.centerPoint.y);   this.ctxtObj.lineTo(Math.cos(i*gap)*eLen + this.centerPoint.x,Math.sin(i*gap)*eLen + this.centerPoint.y);   this.ctxtObj.stroke();   this.ctxtObj.closePath();   /*iDiff = this.doChangeToFront(i); // i => iDiff   //iDiff2 = this.doChangeToEnd(iDiff,60); // iDiff => i   this.ctxtObj.font = "2px bold 微軟雅黑";   this.ctxtObj.textAlign="center"   this.ctxtObj.textBaseline="middle"   this.ctxtObj.fillText(iDiff,Math.cos(i*gap)*eLen + this.centerPoint.x,Math.sin(i*gap)*eLen + this.centerPoint.y);   */  }  this.ctxtObj.beginPath();  this.ctxtObj.arc(this.centerPoint.x,this.centerPoint.y,Math.min( this.caObj.width, this.caObj.height)*0.5*0.01,0,360,false);  this.ctxtObj.fillStyle="red";  this.ctxtObj.fill();  this.ctxtObj.closePath();  this.ctxtObj.restore(); } doDrawYearPanel = function(startYear,nowYear,afterGap){  // 畫年份面板  var sLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.53;  var eLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.55;  var labelLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.60;  var allYears = nowYear-startYear+afterGap;  var gap = Math.PI/Math.ceil(allYears*0.5);  this.ctxtObj.save();   this.ctxtObj.fillStyle = "#b4ffff";  this.ctxtObj.beginPath();  this.ctxtObj.arc(this.centerPoint.x,this.centerPoint.y,eLen+2,0,360,false);  this.ctxtObj.closePath();  this.ctxtObj.fill();   this.ctxtObj.fillStyle = "white";  this.ctxtObj.beginPath();  this.ctxtObj.arc(this.centerPoint.x,this.centerPoint.y,sLen-2,0,360,false);  this.ctxtObj.closePath();  this.ctxtObj.fill();  this.ctxtObj.restore();   this.ctxtObj.fillStyle = "#369";  this.ctxtObj.strokeStyle = "#369";   for(var i =-2;i<=allYears-3;i++){   this.ctxtObj.save();   this.ctxtObj.beginPath();   this.ctxtObj.moveTo(Math.cos(i*gap)*sLen + this.centerPoint.x ,Math.sin(i*gap)*sLen + this.centerPoint.y);   this.ctxtObj.lineTo(Math.cos(i*gap)*eLen + this.centerPoint.x,Math.sin(i*gap)*eLen + this.centerPoint.y);   this.ctxtObj.closePath();   this.ctxtObj.stroke();   iDiff = this.doChangeToFront(i,allYears) + startYear;   this.ctxtObj.translate(this.centerPoint.x, this.centerPoint.y);    this.ctxtObj.rotate(i*gap);   this.ctxtObj.font = "10px bold 微軟雅黑";   this.ctxtObj.textAlign="start";   this.ctxtObj.textBaseline="bottom";   this.ctxtObj.fillText(iDiff,sLen,0);   this.ctxtObj.restore();  } } doDrawMonthPanel = function(){  // 畫年份面板  var sLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.58;  var eLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.6;  var labelLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.70;  var gap = Math.PI/6;  this.ctxtObj.save();   this.ctxtObj.fillStyle = "#fde08c";  this.ctxtObj.beginPath();  this.ctxtObj.arc(this.centerPoint.x,this.centerPoint.y,eLen+2,0,360,false);  this.ctxtObj.closePath();  this.ctxtObj.fill();   this.ctxtObj.fillStyle = "white";  this.ctxtObj.beginPath();  this.ctxtObj.arc(this.centerPoint.x,this.centerPoint.y,sLen-2,0,360,false);  this.ctxtObj.closePath();  this.ctxtObj.fill();  this.ctxtObj.restore();   this.ctxtObj.fillStyle = "#369";  this.ctxtObj.strokeStyle = "#369";   for(var i =-2;i<=9;i++){   this.ctxtObj.save();   this.ctxtObj.beginPath();   this.ctxtObj.moveTo(Math.cos(i*gap)*sLen + this.centerPoint.x ,Math.sin(i*gap)*sLen + this.centerPoint.y);   this.ctxtObj.lineTo(Math.cos(i*gap)*eLen + this.centerPoint.x,Math.sin(i*gap)*eLen + this.centerPoint.y);   this.ctxtObj.closePath();   this.ctxtObj.stroke();   iDiff = (this.doChangeToFront(i,12)) % 12+1;   this.ctxtObj.translate(this.centerPoint.x, this.centerPoint.y);    this.ctxtObj.rotate(i*gap);   this.ctxtObj.font = "20px bold 微軟雅黑";   this.ctxtObj.textAlign="start";   this.ctxtObj.textBaseline="middle";   this.ctxtObj.fillText((iDiff+'').PadLeft(2,0),eLen,0);   this.ctxtObj.restore();  } } doDrawDayPanel = function(dayCount,realAllDay){  // 畫年份面板  var sLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.68;  var eLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.7;  var labelLen = Math.min( this.caObj.width, this.caObj.height)*0.5*0.80;  var gap = Math.PI/Math.ceil(dayCount*0.5);  this.ctxtObj.save();  this.ctxtObj.fillStyle = "#e587e5";  this.ctxtObj.beginPath();  this.ctxtObj.arc(this.centerPoint.x,this.centerPoint.y,eLen+2,0,360,false);  this.ctxtObj.closePath();  this.ctxtObj.fill();  this.ctxtObj.fillStyle = "white";  this.ctxtObj.beginPath();  this.ctxtObj.arc(this.centerPoint.x,this.centerPoint.y,sLen-2,0,360,false);  this.ctxtObj.closePath();  this.ctxtObj.fill();  this.ctxtObj.restore();  this.ctxtObj.fillStyle = "#369";  this.ctxtObj.strokeStyle = "#369";  for(var i =-2;i<=dayCount-2;i++){   this.ctxtObj.save();   this.ctxtObj.beginPath();   this.ctxtObj.moveTo(Math.cos(i*gap)*sLen + this.centerPoint.x ,Math.sin(i*gap)*sLen + this.centerPoint.y);   this.ctxtObj.lineTo(Math.cos(i*gap)*eLen + this.centerPoint.x,Math.sin(i*gap)*eLen + this.centerPoint.y);   this.ctxtObj.closePath();   this.ctxtObj.stroke();   iDiff = (this.doChangeToFront(i,dayCount)) % (dayCount+1);   if(iDiff<=realAllDay && iDiff!=0){    this.ctxtObj.translate(this.centerPoint.x, this.centerPoint.y);     this.ctxtObj.rotate(i*gap);    this.ctxtObj.font = "20px bold 微軟雅黑";    this.ctxtObj.textAlign="start";    this.ctxtObj.textBaseline="middle";    this.ctxtObj.fillText((iDiff+'').PadLeft(2,0),eLen,0);   }   this.ctxtObj.restore();  } } drawYMDHMS = function(slen,elen,cslen,celen,main,sub,gapM,type,value){  // 畫日期時間針  var date = new Date();  var siM = main;  var siS = sub;  var gap = Math.PI/gapM;  var sLen = Math.min( this.caObj.width, this.caObj.height)*0.5*slen;  var eLen = Math.min( this.caObj.width, this.caObj.height)*0.5*elen;  var csLen = Math.min( this.caObj.width, this.caObj.height)*0.5*cslen;  var ceLen = Math.min( this.caObj.width, this.caObj.height)*0.5*celen;  i = this.doChangeToEnd(siM+siS,gapM*2);  ci = (i+gapM) % (gapM*2);  this.ctxtObj.save();  this.ctxtObj.beginPath();  if(type=='y'){   this.ctxtObj.strokeStyle="#00cece";   this.ctxtObj.lineWidth = 6;  }else if(type=='M'){   this.ctxtObj.strokeStyle="#ce9b00";   this.ctxtObj.lineWidth = 5;  }else if(type=='d'){   this.ctxtObj.strokeStyle="#bd01bd";   this.ctxtObj.lineWidth = 4;  }else if(type=='h'){   this.ctxtObj.lineWidth = 3;  }else if(type=='m'){   this.ctxtObj.lineWidth = 2;  }else if(type=='s'){   this.ctxtObj.lineWidth = 1;  }  this.ctxtObj.moveTo(Math.cos(i*gap)*sLen + this.centerPoint.x ,Math.sin(i*gap)*sLen + this.centerPoint.y);  this.ctxtObj.lineTo(Math.cos(i*gap)*eLen + this.centerPoint.x,Math.sin(i*gap)*eLen + this.centerPoint.y);  this.ctxtObj.moveTo(Math.cos(ci*gap)*csLen + this.centerPoint.x ,Math.sin(ci*gap)*csLen + this.centerPoint.y);  this.ctxtObj.lineTo(Math.cos(ci*gap)*ceLen + this.centerPoint.x,Math.sin(ci*gap)*ceLen + this.centerPoint.y);  this.ctxtObj.stroke();  this.ctxtObj.closePath();  this.ctxtObj.restore();  var cpi = ci*gap*360/Math.PI;  if(type=='y'){   this.ctxtObj.save();    this.ctxtObj.fillStyle = "#00cece";   this.ctxtObj.strokeStyle="#00cece";   this.ctxtObj.lineWidth = 8;   this.ctxtObj.beginPath();   this.ctxtObj.arc(this.centerPoint.x,this.centerPoint.y,ceLen,ci*gap-gap*0.5,ci*gap+gap*0.5,false);   this.ctxtObj.stroke();   this.ctxtObj.closePath();   this.ctxtObj.translate(this.centerPoint.x, this.centerPoint.y);    this.ctxtObj.rotate(i*gap);   this.ctxtObj.font = "20px bold 微軟雅黑";   this.ctxtObj.textAlign="start";   this.ctxtObj.textBaseline="middle";   this.ctxtObj.lineWidth = 2;   this.ctxtObj.fillText(value + '年',eLen*1.03,0);   this.ctxtObj.strokeText(value + '年',eLen*1.03,0);   this.ctxtObj.restore();  }else if(type=='M'){   this.ctxtObj.save();   this.ctxtObj.beginPath();    this.ctxtObj.fillStyle = "#ce9b00";   this.ctxtObj.strokeStyle="#ce9b00";   this.ctxtObj.lineWidth = 7;   this.ctxtObj.arc(this.centerPoint.x,this.centerPoint.y,ceLen,ci*gap-gap*0.5,ci*gap+gap*0.5,false);   this.ctxtObj.stroke();   this.ctxtObj.closePath();   this.ctxtObj.translate(this.centerPoint.x, this.centerPoint.y);    this.ctxtObj.rotate(i*gap);   this.ctxtObj.font = "20px bold 微軟雅黑";   this.ctxtObj.textAlign="start";   this.ctxtObj.textBaseline="middle";   this.ctxtObj.lineWidth = 2;   this.ctxtObj.fillText(value + '月',eLen*1.03,0);   this.ctxtObj.strokeText(value + '月',eLen*1.03,0);   this.ctxtObj.restore();  }else if(type=='d'){   this.ctxtObj.save();   this.ctxtObj.beginPath();    this.ctxtObj.fillStyle = "#bd01bd";   this.ctxtObj.strokeStyle="#bd01bd";   this.ctxtObj.lineWidth = 6;   this.ctxtObj.arc(this.centerPoint.x,this.centerPoint.y,ceLen,ci*gap-gap*0.5,ci*gap+gap*0.5,false);   this.ctxtObj.stroke();   this.ctxtObj.closePath();   this.ctxtObj.translate(this.centerPoint.x, this.centerPoint.y);    this.ctxtObj.rotate(i*gap);   this.ctxtObj.font = "20px bold 微軟雅黑";   this.ctxtObj.textAlign="start";   this.ctxtObj.textBaseline="middle";   this.ctxtObj.lineWidth = 2;   this.ctxtObj.fillText(value + '日',eLen*1.03,0);   this.ctxtObj.strokeText(value + '日',eLen*1.03,0);   this.ctxtObj.restore();  }  this.ctxtObj.restore(); } animate = function(){  var now = (+new Date);  if (now - this.lastFpsUpdateTime > 60) {   this.lastFpsUpdateTime = now;   this.doDraw();  }  window.requestNextAnimationFrame(this.animate); } getCountDays = function (year,month) {  var curDate = new Date();  curDate.setFullYear(year);  curDate.setMonth(month+1);  curDate.setDate(0);  return curDate.getDate(); } getTimeNow = function(){  var date = new Date();  var seperator1 = "-";  var seperator2 = ":";  this.timeNow = date.getFullYear()     + seperator1 + (date.getMonth()+1+'').PadLeft(2,0)    + seperator1 + (date.getDate()+'').PadLeft(2,0)   + " " + (date.getHours()+'').PadLeft(2,0)    + seperator2 + (date.getMinutes()+'').PadLeft(2,0)   + seperator2 + (date.getSeconds()+'').PadLeft(2,0)    + '.' +(date.getMilliseconds()+'').PadLeft(3,0); } // objects}var cwt = new calendarWithTime();//=================================================String.prototype.PadLeft = function(totalWidth, paddingChar){ if ( paddingChar != null ) { return this.PadHelper(totalWidth, paddingChar, false); } else { return this.PadHelper(totalWidth, ' ', false); }}String.prototype.PadRight = function(totalWidth, paddingChar){ if ( paddingChar != null ) { return this.PadHelper(totalWidth, paddingChar, true); } else { return this.PadHelper(totalWidth, ' ', true); }}String.prototype.PadHelper = function(totalWidth, paddingChar, isRightPadded){ if ( this.length < totalWidth) { var paddingString = new String(); for (i = 1; i <= (totalWidth - this.length); i++) { paddingString += paddingChar; } if ( isRightPadded ) { return (this + paddingString); } else { return (paddingString + this); } } else { return this; }}

以上就是本文的全部內容,希望本文的內容對大家的學習或者工作能帶來一定的幫助,同時也希望多多支持武林網!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
成人在线国产精品| 欧美日本国产在线| 国产综合在线视频| 欧美日韩亚洲视频一区| 亚洲精品一区二区三区不| 国产精品午夜一区二区欲梦| 亚洲一区二区三区在线免费观看| 国产成人综合亚洲| 亚洲综合第一页| 亚洲欧美三级伦理| 欧美又大又硬又粗bbbbb| 两个人的视频www国产精品| 亚洲成人亚洲激情| 久久精品色欧美aⅴ一区二区| 国产成人aa精品一区在线播放| 国产极品精品在线观看| 国产在线观看精品一区二区三区| 亚洲国产高清福利视频| 国产精品劲爆视频| 欧美成人三级视频网站| 国产日韩欧美日韩| 亚洲激情第一页| 久久精品国产亚洲一区二区| 久久九九热免费视频| 欧美激情在线播放| 久久亚洲国产成人| 国产精品视频大全| 国产欧美在线观看| 亚洲精品资源美女情侣酒店| www欧美日韩| 欧美片一区二区三区| 中文字幕亚洲精品| 97香蕉久久超级碰碰高清版| 欧美日韩在线视频观看| 日本精品久久久久久久| 国产精品自产拍在线观| 亚洲欧美综合另类中字| 青青精品视频播放| 亚洲国产精品久久久久秋霞不卡| 亚洲国产精品小视频| 国产欧洲精品视频| 欧美国产日本高清在线| 国产欧美欧洲在线观看| 日本精品久久久久久久| 岛国视频午夜一区免费在线观看| 中文欧美在线视频| 国产精品高清在线| 国产在线精品播放| 国产精品久久婷婷六月丁香| 中文字幕久精品免费视频| 欧美成人第一页| 欧美一级免费视频| 欧美激情影音先锋| 国产成人午夜视频网址| 日韩禁在线播放| 免费97视频在线精品国自产拍| 成人国产精品av| 久久亚洲影音av资源网| 黑丝美女久久久| 欧美亚洲一区在线| 精品久久久久久久久久久| 亚洲第一中文字幕| 国产精品69av| 18性欧美xxxⅹ性满足| 欧美最顶级丰满的aⅴ艳星| 亚洲国产精品va在线看黑人| 清纯唯美日韩制服另类| 欧美日韩中文字幕在线视频| 91系列在线观看| 欧美成人免费播放| 中日韩美女免费视频网站在线观看| 亚洲视频一区二区| 久久精品视频网站| 久久久精品一区二区三区| 日韩精品极品视频免费观看| 成人性生交大片免费看小说| 成人激情电影一区二区| 亚洲一区精品电影| 中文字幕免费精品一区高清| 日韩av电影中文字幕| 欧美在线亚洲一区| 欧美一级视频一区二区| 欧美综合激情网| 欧美激情亚洲一区| 欧美电影免费看| 午夜精品99久久免费| 国产日韩专区在线| 成人精品福利视频| 国产精品免费久久久| 久久伊人91精品综合网站| 日本韩国在线不卡| xx视频.9999.com| 亚洲精品ady| 国产精品一区二区女厕厕| 91久久久久久久久| 久久精品视频在线观看| 欧美性极品少妇精品网站| 国产精品免费视频xxxx| 亚洲视频专区在线| 久久精品国产69国产精品亚洲| 国内精品400部情侣激情| 韩剧1988在线观看免费完整版| 亚洲网站视频福利| 亚洲性无码av在线| 欧美高清理论片| 亚洲aⅴ日韩av电影在线观看| 国产精品亚洲片夜色在线| 中文字幕亚洲欧美| 午夜精品一区二区三区在线播放| 国产精品视频免费在线观看| 亚洲精品视频在线观看视频| 日韩一区二区在线视频| 久久精品99无色码中文字幕| 亚洲视频免费一区| 91视频免费在线| 国内精品久久久久伊人av| 久久精品国产亚洲精品| 国产一区二区三区精品久久久| 亚洲国产高清高潮精品美女| 亚洲第一页中文字幕| 在线亚洲欧美视频| 欧美激情在线一区| 亚洲激情在线观看视频免费| 97欧美精品一区二区三区| 欧美日本高清视频| 欧洲成人性视频| 精品国产31久久久久久| 97婷婷大伊香蕉精品视频| 欧美日韩激情小视频| 亚洲综合在线中文字幕| 中文字幕视频在线免费欧美日韩综合在线看| 国产精品你懂得| 性色av一区二区三区| 久久精品一本久久99精品| 国产精品久久久久久超碰| 中文字幕久久亚洲| 日韩中文视频免费在线观看| 亚洲韩国欧洲国产日产av| 久久久久久高潮国产精品视| 亚洲自拍偷拍网址| 亚洲欧美另类自拍| 久久精品国产v日韩v亚洲| 成人午夜在线观看| 久久久之久亚州精品露出| 亚洲电影中文字幕| 91免费福利视频| 久久久www成人免费精品张筱雨| 日韩欧美精品中文字幕| 日韩中文字幕在线免费观看| 国产在线精品播放| 日韩精品视频免费| 国产精品91在线| 欧美极品少妇全裸体| 亚洲小视频在线观看| 久久精品视频中文字幕| 日本老师69xxx| 亚洲精品videossex少妇| 91精品视频在线免费观看| 韩国v欧美v日本v亚洲| 国产suv精品一区二区| 成人免费xxxxx在线观看| 久久中文久久字幕| 青青草一区二区| 日韩av免费看网站|