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

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

?? dw_wipes.js

?? javascirpt的繪圖腳本 包括dw_clip.js
?? JS
字號:
/* 
		dw_wipes.js		wipe methods for dynObj 
		(requires dw_core.js, dw_clip.js, and dw_util.js)
		version date: October 2002 (this.wiping prop added)
		
		This code is from Dynamic Web Coding  
		at http://www.dyn-web.com/
    Copyright 2002 by Sharon Paine 
    See Terms of Use at http://www.dyn-web.com/bus/terms.html
    Permission granted to use this code 
    as long as this entire notice is included.
		
		Idea and math for time-based animation from:
		Aaron Boodman at www.youngpup.net 
		and Mike Foster at www.cross-browser.com
*/

// wipe called can be prevented
var wipe_halt = false;	

// args: which wipe, delay, wipeTime, what next (fn)
dynObj.prototype.wipe=function(which,delay,wipeTime,fn) {
	if (wipe_halt||this.wiping) return;
	this.wipeTime=wipeTime||1000; this.delay=delay||100; this.fn=fn;
	switch (which) {
		// wipe into view by expanding to the right
		case "in right" :
			this.clipTo(0,0,this.height,0);
			this.show();
      setTimeout(this.obj+".wipe_in_rt()",this.delay);
  	break;
		
		// wipe into view by expanding from the center out
		case "in center" :
			this.vCenter = Math.ceil(this.height/2);
			this.hCenter = Math.ceil(this.width/2);
			this.clipTo(this.vCenter,this.hCenter,this.vCenter,this.hCenter);
			this.show();
			setTimeout(this.obj+".wipe_in_center()",this.delay);
		break;
		
		// wipe into view from upper left corner to lower right
		case "in corner" :
			this.clipTo(0,0,0,0);
			this.show();
			setTimeout(this.obj+".wipe_in_corner()",this.delay);
		break;
		
		// wipe into view from top to bottom
		case "in top" :
			this.clipTo(0,0,0,0);
			this.show();
			setTimeout(this.obj+".wipe_in_top()",this.delay);
		break;
		
		// wipe out of view by contracting to the center
		case "out center" :
			this.vCenter = Math.ceil(this.height/2);
			this.hCenter = Math.ceil(this.width/2);
			setTimeout(this.obj+".wipe_out_center()",this.delay);
		break;
		
		// wipe out of view by contracting to the left
		case "out left" :
			setTimeout(this.obj+".wipe_out_left()",this.delay);
		break;
		
		// wipe out of view by contracting to the right
		case "out right" :
			setTimeout(this.obj+".wipe_out_right()",this.delay);
  	break;
		
		// wipe out of view by contracting from left and right
  	case "out middle" :
			this.dest=Math.ceil(this.width/2);
      setTimeout(this.obj+".wipe_out_mid()",this.delay);
		break;
		
		// wipe out of view from the upper left to lower right
		case "out corner" :
			setTimeout(this.obj+".wipe_out_corner()",this.delay);
		break;
		
		// wipe out of view from bottom to top
		case "out top" :
			setTimeout(this.obj+".wipe_out_top()",this.delay);
		break;
		
		// wipe out of view from top to bottom
		case "out bottom" :
			setTimeout(this.obj+".wipe_out_bottom()",this.delay);
		break;
		
		// wipe out of view from lower right to upper left
		case "out top left" :
			setTimeout(this.obj+".wipe_out_top_left()",this.delay);
		break;
		
  	default:
			alert("Oops! Check choices again.");
	}
	this.wipeStart = new Date().getTime()+this.delay;
	this.per = Math.PI/(2*this.wipeTime);
}

// wipe into view by expanding to the right
dynObj.prototype.wipe_in_rt=function() {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
//	wipes could potentially be steady, accelerate, or decelerate
//	idea and math from Mike Foster at www.cross-browser.com
//	var inc = this.width*Math.sin(this.per*elapsed);	// decelerate
//	var inc = -this.width*Math.cos(this.per*elapsed)+this.width;	// accel
	var inc = this.width*((1/this.wipeTime)*elapsed);	// steady
	this.clipTo(0,inc,this.height,0);
	setTimeout(this.obj+".wipe_in_rt()",35);
	} else {
		this.clipTo(0,this.width,this.height,0);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

// wipe into view by expanding from the center out
dynObj.prototype.wipe_in_center=function() {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
	var vinc = this.vCenter*((1/this.wipeTime)*elapsed);
	var hinc = this.hCenter*((1/this.wipeTime)*elapsed);
	this.clipTo(this.vCenter-vinc,this.hCenter+hinc,this.vCenter+vinc,this.hCenter-hinc);
	setTimeout(this.obj+".wipe_in_center()",35);
	} else {
		this.clipTo(0,this.width,this.height,0);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

// wipe into view from upper left corner to lower right
dynObj.prototype.wipe_in_corner=function() {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
	var vinc = this.height*((1/this.wipeTime)*elapsed);
	var hinc = this.width*((1/this.wipeTime)*elapsed);
	this.clipTo(0,hinc,vinc,0);
	setTimeout(this.obj+".wipe_in_corner()",35);
	} else {
		this.clipTo(0,this.width,this.height,0);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

// wipe into view from top to bottom
dynObj.prototype.wipe_in_top=function() {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
	var inc = this.height*((1/this.wipeTime)*elapsed);
	this.clipTo(0,this.width,inc,0);
	setTimeout(this.obj+".wipe_in_top()",35);
	} else {
		this.clipTo(0,this.width,this.height,0);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

// wipe out of view by contracting to the center
dynObj.prototype.wipe_out_center=function() {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
	var vinc = this.vCenter*((1/this.wipeTime)*elapsed);
	var hinc = this.hCenter*((1/this.wipeTime)*elapsed);
	this.clipTo(vinc,this.width-hinc,this.height-vinc,hinc);
		setTimeout(this.obj+".wipe_out_center()",35);
	} else {
		this.clipTo(this.vCenter,this.hCenter,this.vCenter,this.hCenter);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

// wipe out of view by contracting to the left
dynObj.prototype.wipe_out_left=function() {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
		var inc = this.width*((1/this.wipeTime)*elapsed);
		this.clipTo(0,this.width-inc,this.height,0);
		setTimeout(this.obj+".wipe_out_left()",35);
	} else {
		this.clipTo(0,0,this.height,0);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

// wipe out of view by contracting to the right
dynObj.prototype.wipe_out_right=function() {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
		var inc = this.width*((1/this.wipeTime)*elapsed);
		this.clipTo(0,this.width,this.height,inc);
		setTimeout(this.obj+".wipe_out_right()",35);
	} else {
	this.clipTo(0,this.width,this.height,this.width);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

// wipe out of view by contracting from left and right
dynObj.prototype.wipe_out_mid=function() {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
//	var inc = this.dest*Math.sin(this.per*elapsed);
	// this one accelerates
	var inc = -this.dest*Math.cos(this.per*elapsed)+this.dest;
//	var inc = this.dest*((1/this.wipeTime)*elapsed);
		this.clipTo(0,this.width-inc,this.height,inc);
		setTimeout(this.obj+".wipe_out_mid()",35);
	} else {
		this.clipTo(0,this.dest,this.height,this.dest);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

// wipe out of view from upper left to lower right
dynObj.prototype.wipe_out_corner=function () {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
	// accelerates
	var vinc = -this.height*Math.cos(this.per*elapsed)+this.height;
	var hinc = -this.width*Math.cos(this.per*elapsed)+this.width;
		this.clipTo(vinc,this.width,this.height,hinc);
		setTimeout(this.obj+".wipe_out_corner()",35);
	} else {
		this.clipTo(this.height,this.width,this.height,this.width);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

// wipe out of view from bottom to top
dynObj.prototype.wipe_out_top=function() {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
		var inc = this.height*((1/this.wipeTime)*elapsed);
		this.clipTo(0,this.width,this.height-inc,0);
		setTimeout(this.obj+".wipe_out_top()",35);
	} else {
	this.clipTo(0,this.width,this.height,this.width);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

// wipe out of view from top to bottom
dynObj.prototype.wipe_out_bottom=function() {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
		var inc = this.height*((1/this.wipeTime)*elapsed);
		this.clipTo(inc,this.width,this.height,0);
		setTimeout(this.obj+".wipe_out_bottom()",35);
	} else {
	this.clipTo(0,this.width,this.height,this.width);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

// wipe out of view from lower right to upper left
dynObj.prototype.wipe_out_top_left=function () {
	this.wiping = true;
	var clipVal = this.getClipValues();
	var elapsed = (new Date().getTime())-this.wipeStart;
	if (elapsed<this.wipeTime) {
	var vinc = -this.height*Math.cos(this.per*elapsed)+this.height;
	var hinc = -this.width*Math.cos(this.per*elapsed)+this.width;
		this.clipTo(0,this.width-hinc,this.height-vinc,0);
		setTimeout(this.obj+".wipe_out_top_left()",35);
	} else {
		this.clipTo(0,0,0,0);
		this.wiping = false;
		if (this.fn) eval(this.fn);
	}
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线观看欧美日本| 日韩一区二区三区视频| 日本91福利区| 亚洲老妇xxxxxx| 精品国产污污免费网站入口| 色综合天天性综合| 国产综合久久久久久久久久久久| 亚洲欧美日韩精品久久久久| 精品国产乱子伦一区| 欧美午夜电影网| 成人av免费在线播放| 国产伦理精品不卡| 日本va欧美va欧美va精品| 一区二区欧美在线观看| 国产精品美女久久久久久| 欧美成人精品1314www| 欧美日韩美少妇| 在线看国产一区二区| k8久久久一区二区三区| 国内精品国产成人| 美腿丝袜亚洲色图| 三级一区在线视频先锋 | 国产高清成人在线| 久久精品99国产精品日本| 亚洲成人在线网站| 亚洲一区二区精品久久av| 亚洲色图丝袜美腿| 中文一区二区在线观看| 久久久影院官网| 亚洲精品一区在线观看| 精品蜜桃在线看| 精品不卡在线视频| 日韩一区二区麻豆国产| 欧美久久婷婷综合色| 欧美午夜不卡视频| 欧美性极品少妇| 在线观看一区二区视频| 91久久国产最好的精华液| 色综合一个色综合| 91福利资源站| 欧美日韩国产高清一区二区三区| 欧美日韩中文国产| 欧美日韩精品一区二区| 欧美三级电影一区| 欧美精品粉嫩高潮一区二区| 56国语精品自产拍在线观看| 91精品国产色综合久久ai换脸 | 国产激情91久久精品导航| 激情六月婷婷综合| 精品无人码麻豆乱码1区2区| 久久av中文字幕片| 成人性生交大合| 99视频精品在线| 在线免费不卡电影| 欧美一级国产精品| 精品日韩99亚洲| 中文字幕精品一区| 一区二区三区在线免费观看| 亚洲一区影音先锋| 美女国产一区二区| 国产成人丝袜美腿| 91国产视频在线观看| 91精品国产综合久久久蜜臀粉嫩| 精品国产区一区| 国产精品久久久久精k8| 亚洲国产中文字幕| 久久国内精品自在自线400部| 成人影视亚洲图片在线| 日本电影欧美片| 日韩欧美国产成人一区二区| 久久久国产综合精品女国产盗摄| 国产精品人成在线观看免费| 亚洲一二三区在线观看| 精品亚洲成av人在线观看| av在线不卡网| 日韩一区二区三区免费看| 国产亚洲一区二区三区| 一区二区三区四区在线| 久久av老司机精品网站导航| av激情综合网| 欧美一个色资源| 国产精品进线69影院| 蜜臀av性久久久久av蜜臀妖精| 国产91精品精华液一区二区三区| 一本一本久久a久久精品综合麻豆| 欧美高清视频不卡网| 国产精品污www在线观看| 午夜精品久久久久久久99水蜜桃 | 欧美日韩日日夜夜| 2023国产精品| 亚洲成人三级小说| 盗摄精品av一区二区三区| 91麻豆精品久久久久蜜臀| 久久精品男人天堂av| 天天综合天天综合色| 99久久婷婷国产精品综合| 日韩一级黄色大片| 一区二区三区四区在线| 国产一区二区福利视频| 精品视频资源站| 国产精品久久久久影院老司| 久久国产生活片100| 欧美三级午夜理伦三级中视频| 国产欧美日产一区| 麻豆成人久久精品二区三区红| 在线免费视频一区二区| 国产精品久99| 国产成人在线视频免费播放| 日韩欧美卡一卡二| 视频一区欧美日韩| 在线视频欧美精品| 亚洲婷婷国产精品电影人久久| 国内精品久久久久影院一蜜桃| 91精品免费观看| 亚洲电影欧美电影有声小说| 一本大道久久a久久精品综合| 国产午夜精品在线观看| 久久国产精品露脸对白| 欧美日韩激情在线| 亚洲精品乱码久久久久| 成人av网站免费观看| 久久久亚洲精品一区二区三区| 蜜臀av国产精品久久久久| 欧美日韩国产首页在线观看| 亚洲综合免费观看高清完整版| 97久久人人超碰| 国产欧美久久久精品影院| 国产综合色在线| 精品国精品自拍自在线| 久久国产尿小便嘘嘘| 日韩欧美精品在线| 精品一区二区久久| 精品日韩av一区二区| 精品一区二区三区免费| 欧美精品一区二区三| 精品一区二区三区免费观看| 精品va天堂亚洲国产| 国产一区不卡在线| 日本一区二区免费在线| 不卡av在线网| 亚洲色图20p| 色拍拍在线精品视频8848| 亚洲电影一级黄| 91麻豆精品国产综合久久久久久| 日本欧美大码aⅴ在线播放| 欧美一区二区大片| 精品在线播放免费| 国产日韩欧美不卡| 成人av免费在线观看| 亚洲精品国产一区二区三区四区在线 | 国产亚洲综合性久久久影院| 国产成人自拍高清视频在线免费播放| 国产清纯白嫩初高生在线观看91 | 亚洲欧美综合在线精品| 91美女福利视频| 亚洲福利视频一区| 欧美mv日韩mv国产网站| 国产一区二区视频在线| 亚洲欧洲另类国产综合| 欧美综合一区二区| 日本aⅴ亚洲精品中文乱码| 久久一日本道色综合| hitomi一区二区三区精品| 亚洲免费在线看| 91精品综合久久久久久| 狠狠色狠狠色综合系列| 国产精品嫩草影院com| 在线区一区二视频| 蜜桃av一区二区在线观看| 中文在线免费一区三区高中清不卡| 色婷婷国产精品综合在线观看| 五月婷婷色综合| 国产午夜亚洲精品羞羞网站| 在线观看日韩电影| 色香蕉久久蜜桃| 麻豆一区二区三区| 中文字幕中文在线不卡住| 欧美猛男超大videosgay| 激情欧美一区二区三区在线观看| 亚洲日本va午夜在线影院| 91精品国产91综合久久蜜臀| 国产福利精品导航| 午夜久久久久久| 国产精品天干天干在线综合| 欧美日产在线观看| 99精品视频一区二区| 久久97超碰色| 亚洲小少妇裸体bbw| 国产欧美一区二区精品性| 欧美日韩成人综合天天影院| 国产999精品久久| 日日摸夜夜添夜夜添精品视频| 欧美国产禁国产网站cc| 91精品国产91久久久久久最新毛片| fc2成人免费人成在线观看播放| 麻豆精品视频在线| 一区二区免费在线播放| 中文字幕欧美日韩一区| 精品久久五月天| 欧美精品在欧美一区二区少妇|