亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? asflip.as

?? as3.0 翻書效果
?? AS
?? 第 1 頁 / 共 2 頁
字號:
?/**
* 主控制器,單件類;
* @author crlnet
* @extends http://www.iparigrafika.hu/pageflip 
* @version 1.1
*/
package crlclr{
	
	import crlclr.Event.FlipEvent;
	import crlclr.Event.FlippingEventArg;
	import crlclr.Event.FlipResize;
	import crlclr.*;
	import flash.display.*;
	import flash.events.*;
	import flash.utils.*;
	
	public class ASFlip extends Sprite {

		private var AM:Number = Math.PI/180;
		private var pageOrder:Array;
		private var pageCanTear:Array;
		private var pageNumber:Array;
		private var removedPages:Array = new Array();
		
		public var pages:Pages;
		private var pw:Number = 240;			
		private var ph:Number = 348;
			
		private var page:int=0;				//first page (normally it is 0 = the page before the cover = blank page)
		private var hcover:Boolean = false;		//hard cover on/off

		private var clickarea:Number = 64;		//pixel width of the click sensitive area at the edges..
		private var afa:Number = 56;			//width of the autoflip starter square.

		private var gs:Number = 2;				//goto page flip speed
		private var ps:Number = 5;				//mouse pursuit speed
		private var es:Number = 3;				//flip speed after mouse btn release

		private var canflip:Boolean = true;		//page flipping enabled

		private var transparency:Boolean = true;//use transparent pages or not (1 level transparency)
		
		
		private var lcover:Boolean = true;		//large cover on/off
		private var lcaddx:Number = 10;		    //width difference
		private var lcaddy:Number =0; //10;		//height difference on top/bottom

		private var SoundOn:Boolean = true;		//use page sounds

		private var mcnt:Number = 0;	        //counter (used on a page where is an animation)
		private var gpage:Number = 0;			//gotoPage No
		private var gflip:Boolean = false;		//gotoPage flip
		private var gdir:Number = 0;			//goto direction...
		private var gskip:Boolean = false;		//skip pages	***
		private var gtarget:Number = 0;		    //target when skipping

		private var aflip:Boolean = false;		//auto flip
		private var flip:Boolean = false;		//pageflip
		private var flipOff:Boolean = false;	//terminateflip
		private var flipOK:Boolean = false;		//good flip
		private var hflip:Boolean = false;		//hardflip (the cover of the book)
		private var rotz = -30;			        //hardflip max y difference

		private var preflip:Boolean = false;	//corner flip status
		private var ctear:Boolean = false;		//actual page status
		private var tear:Boolean = false;
		private var teard:Number = 0;
		private var tlimit:Number = 80;

		private var mpx:Number = 0;
		private var mpy:Number = 0;	            //mousepos at click
		
		private var tox:Number;
		private var toy:Number;
		private var r0:Number;
		private var r1:Number;
		
		private	var cy:Number;
		private var cx:Number;
		private	var ox:Number;
		private var oy:Number;
		private var nx:Number;
		private var ny:Number;
		private var Mx:Number = 0;	//mouse x,y
		private var My:Number = 0;
		private var sx:Number =0;
		private var sy:Number = 0;	//startpoint when flipping
		private var ax:Number = 0;	//auto x,y
		private var ay:Number = 0;
		private var acnt:Number = 0;
		private var aadd:Number = 0;
		
		private var offs:Number;
		
		private var maxpage:Number;
		
		//對像變量;
		var sp2:*;
		var sp3:*;
		var pageN:*;
		var pageO:*;
		var pleft:*;
		var pleftb:*;
		var pright:*;
		var prightb:*;
			
		/**
		* 此類也為一個單件類;
		*/
		public static var Instance:ASFlip=new ASFlip();
		public static function getInstance():ASFlip{
			return ASFlip.Instance;
		}
		public function ASFlip(){
			if(Instance!=null){
				throw new Error("不能創建對像");
			}			
			this.createChildren();
			//他媽的直接用通用的;
			this.pw=siteCommon.Data.PageWidth;
			this.ph=siteCommon.Data.PageHeight;
			//this.pageOrder=Book.getInstance().List;
			this.pageCanTear=Book.getInstance().canTearList;
			this.maxpage=Book.getInstance().Lenght-2;
			
			//把page歸o;
			this.page=0;

			this.resetPages();
			this.reset();
		}
		
		private function createChildren():void{
			this.pages=new Pages();
			this.pages.center.visible=false;
			addChild(this.pages);
		}
		
		public function initEvent():void{			
			stage.addEventListener(MouseEvent.MOUSE_DOWN,this.mouseDownHander);
			stage.addEventListener(MouseEvent.MOUSE_UP,this.mouseUpHander)
			stage.addEventListener(Event.ENTER_FRAME,this.enterHander);
		}
		
		private function enterHander(event:Event):void{
			this.oef();
		}
		
		//initializing pages... 
		private function reset():void {					
			this.pages.p4.page.x = -this.pw;
			this.pages.p4.x = pw;
			this.pages.p1.page.x = -this.pw;
			this.pages.p1.x = 0;

			this.pages.flip.p2.page.x = -this.pw;
			this.pages.flip.p2.x = pw;
			this.pages.flip.p3.page.x = -this.pw;
			this.pages.flip.p3.x = 0;

			this.pages.p0.page.x = -this.pw;
			this.pages.p0.x = 0;
			this.pages.p5.page.x = -this.pw;
			this.pages.p5.x = pw;
			
			this.pages.pLL.page.x = -this.pw;
			this.pages.pLL.x = 0;
			this.pages.pLR.page.x = -this.pw;
			this.pages.pLR.x = this.pw;

			
			this.pages.pgrad.visible = this.pages.masker.visible = this.pages.flip.visible = false;
			this.pages.flip.p3mask.width = this.pages.pgmask.width = this.pw*2;
			this.pages.flip.p3mask.height = this.pages.pgmask.height = this.ph;
			this.pages.center.height = this.ph+2*this.lcaddy;
			this.pages.flip.fmask.page.pf.width = this.pw;
			this.pages.center.width = 6;
			this.pages.flip.fmask.page.pf.height = this.ph;
			this.pages.masker.height = this.pages.pgrad.height = this.pages.flip.p3shadow.height = this.pages.flip.fgrad.height = 2*Math.sqrt(this.ph*this.ph+this.pw*this.pw);
			
			this.pageNumber = new Array();
			for(var i:int=0;i<=(this.maxpage+1);i++){
				this.pageNumber[i] = i;
			}
			
		}
		
		/**
		* hittest at mouse clicks, if click is over the book -> determining turning direction
		*/
		private function hittest():int {
			var Mx:Number=this.pages.mouseX;
			var My:Number=this.pages.mouseY;
			var pmh = this.ph/2;
			//ha a megadott intervallumban klikkelunk, akkor lapozhatunk
			if(My<=pmh && My>=-pmh && Mx<=pw && Mx>=-pw) {	
				var r:Number = Math.sqrt(Mx*Mx+My*My);
				var a:Number = Math.asin(My/r);
				
				My = Math.tan(a)*pw;
				
				if(My>0 && My>ph/2){
					My = this.ph/2;
				}
				if(My<0 && My<-ph/2){
					My = - this.ph/2;
				}
				this.oy = this.sy = My;
				
				this.r0 = Math.sqrt((this.sy+this.ph/2)*(this.sy+this.ph/2)+this.pw*this.pw);
				this.r1 = Math.sqrt((this.ph/2-this.sy)*(this.ph/2-this.sy)+this.pw*this.pw);
				
				pageN = this.pages.flip.p2.page;
				pageO = this.pages.flip.p3;
				this.offs = -this.pw;
				this.pages.flip.fmask.x = this.pw;
				
				//>-----> flip backward
				if(Mx<-(this.pw-this.clickarea) && this.page>0) {		
					this.pages.flip.p3.x = 0;
					this.hflip = this.checkCover(this.page,-1);
					this.setPages(this.page-2,this.page-1,this.page,this.page+1);
					this.ctear = this.pageCanTear[page-1];
					return -1;
				}
				
				//<-----< flip forward
				if(Mx>(this.pw-this.clickarea) && this.page<this.maxpage) {	
					this.pages.flip.p3.x = this.pw;
					this.hflip = this.checkCover(this.page,1);
					trace(this.page)
					this.setPages(this.page,this.page+2,this.page+1,this.page+3);
					this.ctear = this.pageCanTear[page+2];
					return 1;
				}
			}
			//wrong click
			return 0;	
		}
		
		/**
		* 檢查是否是封面,封底.
		* @param	p 當前頁
		* @param	dir 翻動方向
		* @return
		*/
		private function checkCover(p:int,dir:int):Boolean {
			if(this.hcover) {
				if(dir>0) {
					if(p==(this.maxpage-2) || p==0) return true;
				} else {
					if(p==this.maxpage || p==2) return true;
				}
			}
			return false;	
		}
		
		
		/**
		* 判斷是否在感應區內;
		* @return
		*/
		private function corner():Boolean {
			var Mx:Number = Math.abs(this.pages.mouseX);
			var My:Number = Math.abs(this.pages.mouseY);
			if(Mx>(this.pw-this.afa) && Mx<this.pw && My>(this.ph/2-this.afa) && My<(this.ph/2)) {
				return true;
			}
			return false;
		}

		/**
		* onEnterFrame;
		* @return
		*/
		private function oef():void {
			this.mcnt++;
			
			if(!this.flip && this.corner()) {
				this.preflip = true;
				if(!this.autoflip()) this.preflip = false;
			}
			if(this.preflip && !this.corner()) {
				this.preflip = false;
				this.flip = false;
				this.flipOK = false;
				this.flipOff = true;
			}
			this.getm();
			if(this.aflip && !this.preflip) {
				this.My = (this.ay += (this.sy-this.ay)/(this.gflip? this.gs: this.ps ));
				this.acnt += this.aadd;
				this.ax -= this.aadd;
				if(Math.abs(this.acnt)>this.pw) {
					this.flipOK = true;
					this.flipOff = true;
					this.flip = false;
					this.aflip = false;
				}
			}
			//page turning is in progress...
			if(this.flip) {							
				if(this.tear) {
					this.Mx = this.tox;
					this.My = (this.toy += this.teard);
					this.teard *= 1.2;
					if(Math.abs(this.teard)>1200) {
						this.flipOff = true;
						this.flip = false;
					}
				} else {
					this.Mx = (this.ox += (this.Mx-this.ox)/(this.gflip? this.gs: this.ps ));
					this.My = (this.oy += (this.My-this.oy)/(this.gflip? this.gs: this.ps ));
				}
				//positioning pages and shadows
				this.calc(this.Mx,this.My);						
			}
			/*terminating page turning effect... 
			(comlplete turning... dropped on the other side)*/
			if(this.flipOff) {
				if(this.flipOK || this.tear) {
					this.Mx = (this.ox += (-this.sx-this.ox)/(this.gflip? this.gs: this.es ));
					this.My = (this.oy += (this.sy-this.oy)/(this.gflip? this.gs: this.es ));
					this.calc(this.Mx,this.My);
					
					//we are done with turning, so stop all turning issue...
					if(this.Mx/-this.sx > 0.99 || this.tear) {			
						this.flip = false;
						this.flipOK = this.flipOff = false;
						this.pages.pgrad.visible = this.pages.flip.visible = false;
						
						//if tear: remove page!!!
						if(this.tear) {
							this.removePage((this.sx<0)? this.page: this.page+1);
							this.page += (this.sx<0)? -2: 0;
						} else {
							//and tourning pages at pagenumber level...
							this.page += (this.sx<0)? -2: 2;	
						}
						if(this.gskip){
							this.page = this.gtarget;
						}
						
						this.setPages(this.page,0,0,this.page+1);
						this.tear = false;
						
						if(this.gpage>0 && !this.gskip) {
							this.gpage--;
							this.autoflip();
						} else {
							this.gflip = this.gskip = false;
						}
					}
				} else {
					this.Mx = (this.ox += (this.sx-this.ox)/3);
					this.My = (this.oy += (this.sy-this.oy)/3);
					this.calc(this.Mx,this.My);
					if(this.Mx/this.sx > 0.99) {
						this.flip = false;
						this.flipOff = false;
						this.aflip = false;
						this.pages.pgrad.visible = this.pages.flip.visible = false;
						this.setPages(this.page,0,0,this.page+1);	
					}
				}
			}
		}
		
		
		private function calc(Mx:Number,My:Number):void {
			//hardflip...
			if(hflip) {	
				var xp:Number = (this.sx<0)? -Mx: Mx;
				if(xp>0) {
					this.sp2._visible = false;
					this.sp3._visible = true;
					this.scalc(this.sp3,Mx);
				} else {
					this.sp3._visible = false;
					this.sp2._visible = true;
					this.scalc(this.sp2,Mx);
				}
				this.pages.flip.mask=null;
				this.pages.flip.visible = true;
				this.pages.flip.fgrad.visible = false;
				this.pages.flip.p2.visible =this.pages.flip.p3.visible = false;
				return;
			} else {
				this.pages.flip.fgrad.visible = true;
			}
			
			var a:Number;
			var ad:Number
			//normal flipping process;
			var rr0:Number = Math.sqrt((My+this.ph/2)*(My+this.ph/2)+Mx*Mx);
			var rr1:Number = Math.sqrt((this.ph/2-My)*(this.ph/2-My)+Mx*Mx);
			
			if((rr0>this.r0 || rr1>this.r1) && !this.tear) {
				if(My<this.sy) {
					a= Math.asin((this.ph/2-My)/rr1);
					My = (this.ph/2-Math.sin(a)*r1);
					Mx = (Mx<0)? -Math.cos(a)*this.r1: Math.cos(a)*this.r1;
					if(My>sy) {
						if((this.sx*Mx)>0){ 
							My = this.sy;
							Mx = this.sx;
						}else{ 
							My = this.sy;
							Mx = -this.sx;
						}
					}
					if((rr1-this.r1)>this.tlimit && this.ctear) {
						this.teard = -5;
						this.tear = true;
						this.tox = this.ox = Mx;
						this.toy = this.oy = My;
					}
				} else {	
					// k0-val kell osszehasonlitani!
					a= Math.asin((My+this.ph/2)/rr0);
					My = Math.sin(a)*this.r0-this.ph/2;
					Mx = (Mx<0)? -Math.cos(a)*this.r0: Math.cos(a)*this.r0;
					if(My<this.sy) {
						if((this.sx*Mx)>0) {
							My = this.sy;
							Mx = this.sx;
						}else{
							My = this.sy;
							Mx = -this.sx;
						}
					}
					if((rr0-this.r0)>this.tlimit && this.ctear) {
						this.teard = 5;
						this.tear = true;
						this.tox = this.ox = Mx;
						this.toy = this.oy = My;
					}
				}
			}
			if((this.sx<0 && (Mx-this.sx)<10) || (this.sx>0 && (this.sx-Mx)<10)) {
				if(this.sx<0) {
					Mx = -this.pw+10;
				}
				if(this.sx>0){
					Mx = this.pw-10;
				}
			} 
			
			//calculating flipping process
			this.pages.flip.visible = true;
			this.pages.flip.p3shadow.visible = this.pages.pgrad.visible = !this.tear;
			this.pages.flip.p2.visible = this.pages.flip.p3.visible = true;
			
			//equation of the line
			var vx:Number = Mx-this.sx;
			var vy:Number = My-this.sy;
			var a1:Number = vy/vx;
			var a2:Number = -vy/vx;
			
			this.cx = this.sx+(vx/2);
			this.cy = this.sy+(vy/2);
			
			var r:Number = Math.sqrt((this.sx-Mx)*(this.sx-Mx)+(this.sy-My)*(this.sy-My));
			a= Math.asin((this.sy-My)/r);
			if(sx<0){
				a = -a;	
			}
			ad = a/this.AM;
			this.pageN.rotation = ad*2;
			//r = Math.sqrt((this.sx-Mx)*(this.sx-Mx)+(this.sy-My)*(this.sy-My));
			var rl:Number = (this.pw*2);
			if(sx>0) {
				this.pages.masker.scaleX = 1.0;
				this.nx = this.cx-Math.tan(a)*(this.ph/2-this.cy);
				this.ny = this.ph/2;
				if(this.nx>this.pw) {
					this.nx = this.pw;
					this.ny = this.cy+Math.tan(Math.PI/2+a)*(this.pw-this.cx);
				}
				this.pageN.pf.x = -(this.pw-this.nx);
				this.pages.flip.fgrad.scaleX = (r/rl/200)*this.pw;
				this.pages.pgrad.scaleX = -(r/rl/200)*this.pw;
				this.pages.flip.p3shadow.scaleX = (r/rl/200)*this.pw;
			} else { 
				this.pages.masker.scaleX = -1.0;
				this.nx = this.cx-Math.tan(a)*(this.ph/2-this.cy);
				this.ny = this.ph/2;
				if(this.nx<-this.pw) {
					this.nx = -this.pw;
					this.ny = this.cy+Math.tan(Math.PI/2+a)*(-this.pw-this.cx);
				}
				
				this.pageN.pf.x = -(this.pw-(this.pw+this.nx));
				this.pages.flip.fgrad.scaleX = -(r/rl/200)*this.pw;
				this.pages.pgrad.scaleX = (r/rl/200)*this.pw;
				this.pages.flip.p3shadow.scaleX = -(r/rl/200)*this.pw;
			}
			this.pages.masker.x = this.cx;
			this.pages.masker.y = this.cy;
			this.pages.masker.rotation = ad;
			this.pageN.pf.y = -ny;
			this.pageN.x = nx+offs;
			this.pageN.y = ny;
			
			this.pages.flip.fgrad.x = cx;
			this.pages.flip.fgrad.y = cy;
			this.pages.flip.fgrad.rotation = ad;
			this.pages.flip.fgrad.alpha = (r>(rl-50))? (100-(r-(rl-50))*2)/100: 1.0;
			
			this.pages.flip.p3shadow.x = cx;
			this.pages.flip.p3shadow.y = cy;
			this.pages.flip.p3shadow.rotation = ad;
			this.pages.flip.p3shadow.alpha = (r>(rl-50))? (100-(r-(rl-50))*2)/100: 1.0;
			
			this.pages.pgrad.x = cx;
			this.pages.pgrad.y = cy;
			this.pages.pgrad.rotation = ad+180;
			this.pages.pgrad.alpha = (r>(rl-100))? (100-(r-(rl-100)))/100: 1.0;
			
			this.pages.flip.fmask.page.x = this.pageN.x;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲va在线va天堂| 欧美性猛片xxxx免费看久爱 | 久久在线观看免费| 亚洲国产成人av网| 国产精品456露脸| 91精品国产91热久久久做人人| 国产免费观看久久| 精品在线视频一区| 欧美理论电影在线| 亚洲精品国产a| 成人福利视频网站| 国产欧美日韩视频一区二区| 美日韩一区二区| 91精品国产综合久久久久| 亚洲免费伊人电影| 99久久婷婷国产精品综合| 久久久国产一区二区三区四区小说| 日本午夜精品视频在线观看| 欧美怡红院视频| 亚洲欧美国产毛片在线| 不卡一区二区在线| 中文无字幕一区二区三区| 国产在线视频不卡二| 日韩欧美激情一区| 青椒成人免费视频| 日韩午夜激情av| 麻豆高清免费国产一区| 欧美一区二区三区影视| 蜜臀av性久久久久蜜臀aⅴ四虎| 欧美日韩另类国产亚洲欧美一级| 一区二区三国产精华液| 在线亚洲一区二区| 亚洲一区二区3| 欧美久久久久中文字幕| 日韩av一区二区在线影视| 7777精品伊人久久久大香线蕉的| 婷婷开心激情综合| 日韩午夜激情av| 国产成人午夜精品5599| 国产欧美精品一区二区色综合 | 91在线观看高清| 一区二区三区中文字幕在线观看| av一区二区三区黑人| 亚洲伊人伊色伊影伊综合网| 欧美日韩一二区| 精品无人区卡一卡二卡三乱码免费卡| 日韩精品一区二区三区视频在线观看 | 久久男人中文字幕资源站| 极品少妇一区二区三区精品视频| 久久亚洲免费视频| 成人h动漫精品一区二区| 亚洲欧美成人一区二区三区| 欧美日韩亚洲丝袜制服| 国产一区二区主播在线| 中文字幕的久久| 欧美亚洲一区二区在线观看| 欧美a级一区二区| 中文字幕国产精品一区二区| 在线观看亚洲一区| 激情另类小说区图片区视频区| 久久久久久久久久久久久久久99 | 成人一级视频在线观看| 亚洲伊人伊色伊影伊综合网| 欧美一级夜夜爽| 成人福利视频在线看| 五月天亚洲婷婷| 国产欧美日韩三区| 欧美日韩高清一区二区三区| 国产大片一区二区| 午夜激情综合网| 欧美激情一区二区三区不卡| 欧美福利视频一区| 99久久综合精品| 激情偷乱视频一区二区三区| 亚洲乱码中文字幕| 久久婷婷色综合| 欧美日韩国产免费| 成人性生交大合| 精品一区二区综合| 亚洲v中文字幕| 1024亚洲合集| 久久精品一区二区三区四区| 精品视频资源站| 成人精品gif动图一区| 蜜桃av一区二区三区| 亚洲影视在线播放| 亚洲欧美自拍偷拍| 久久久不卡网国产精品一区| 欧美人动与zoxxxx乱| 色综合久久综合中文综合网| 高清不卡一区二区在线| 日韩激情中文字幕| 亚洲激情六月丁香| 欧美激情自拍偷拍| 久久久久久久久久久久久夜| 日韩欧美一区二区视频| 欧美高清精品3d| 91国产精品成人| 日本久久精品电影| 色综合久久综合中文综合网| 99视频精品免费视频| 国产成人av电影在线| 美日韩一区二区三区| 人禽交欧美网站| 日本亚洲天堂网| 免费一级欧美片在线观看| 日韩国产精品久久久| 日本午夜一区二区| 日韩成人av影视| 美女视频网站黄色亚洲| 麻豆一区二区三| 精品一区二区av| 国产麻豆视频精品| 国产sm精品调教视频网站| 韩国女主播一区| 国内精品久久久久影院薰衣草 | 男人的天堂亚洲一区| 婷婷开心久久网| 免费人成在线不卡| 九九九久久久精品| 国产精品一区二区久久不卡| 国产1区2区3区精品美女| www.欧美亚洲| 在线观看不卡一区| 91精品国产91久久久久久一区二区 | 精品人伦一区二区色婷婷| 精品久久久久久久久久久久包黑料 | 亚洲精品国产精品乱码不99| 亚洲另类春色校园小说| 性久久久久久久久久久久| 蜜桃视频在线观看一区| 国产成人精品免费| 成人ar影院免费观看视频| 色综合久久久久| 9191国产精品| 国产亚洲一区二区三区四区| 国产精品传媒入口麻豆| 午夜亚洲福利老司机| 九九精品视频在线看| 97超碰欧美中文字幕| 欧美精品一级二级| 国产日韩亚洲欧美综合| 亚洲一区二区五区| 国产剧情一区在线| 欧洲视频一区二区| 久久久久国产精品麻豆ai换脸 | 国产精品剧情在线亚洲| 亚洲福利电影网| 国产精品羞羞答答xxdd| 欧美中文字幕一区二区三区| 91精品国产麻豆国产自产在线| 久久久久久久久久久黄色| 亚洲国产美女搞黄色| 韩国毛片一区二区三区| 欧美专区日韩专区| 国产午夜亚洲精品理论片色戒| 亚洲精品第一国产综合野| 久久精品国产色蜜蜜麻豆| 91在线免费播放| 精品国产免费久久| 亚洲成a人v欧美综合天堂 | 亚洲三级小视频| 韩国午夜理伦三级不卡影院| 欧美日韩一区久久| 亚洲婷婷国产精品电影人久久| 久久精品免费观看| 欧美视频日韩视频在线观看| 久久久美女毛片| 美女网站色91| 欧美四级电影网| 亚洲人一二三区| 国产另类ts人妖一区二区| 欧美欧美欧美欧美| 一区二区在线免费| 成人国产亚洲欧美成人综合网| 日韩一二在线观看| 亚洲a一区二区| 欧美在线一二三| 亚洲男人的天堂在线aⅴ视频| 国产经典欧美精品| 精品国产自在久精品国产| 亚洲午夜电影在线观看| 色综合色狠狠天天综合色| 国产精品毛片大码女人| 激情综合色播激情啊| 91精品国产综合久久久久久漫画| 亚洲国产精品一区二区久久恐怖片 | 青青草国产成人99久久| 欧美精选午夜久久久乱码6080| 亚洲激情图片一区| 在线观看91视频| 亚洲激情在线播放| 欧美亚洲综合久久| 亚洲成人综合网站| 欧美猛男男办公室激情| 午夜不卡av在线| 欧美一区二区三区男人的天堂| 日韩国产精品久久久| 日韩视频在线永久播放| 久久99日本精品|