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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? rico.js

?? 一套用于生成各種圖形驗(yàn)證碼的庫(Java)
?? JS
?? 第 1 頁 / 共 5 頁
字號:
      this.activatedDropZones = false;   },   _addMouseDownEvent: function( htmlElement ) {      if ( typeof document.implementation != "undefined" &&         document.implementation.hasFeature("HTML",   "1.0") &&         document.implementation.hasFeature("Events", "2.0") &&         document.implementation.hasFeature("CSS",    "2.0") ) {         htmlElement.addEventListener("mousedown", this._mouseDownHandler.bindAsEventListener(this), false);      }      else {         htmlElement.attachEvent( "onmousedown", this._mouseDownHandler.bindAsEventListener(this) );      }   },   _terminateEvent: function(e) {      if ( e.stopPropagation != undefined )         e.stopPropagation();      else if ( e.cancelBubble != undefined )         e.cancelBubble = true;      if ( e.preventDefault != undefined )         e.preventDefault();      else         e.returnValue = false;   },   initializeEventHandlers: function() {      if ( typeof document.implementation != "undefined" &&         document.implementation.hasFeature("HTML",   "1.0") &&         document.implementation.hasFeature("Events", "2.0") &&         document.implementation.hasFeature("CSS",    "2.0") ) {         document.addEventListener("mouseup",   this._mouseUpHandler.bindAsEventListener(this),  false);         document.addEventListener("mousemove", this._mouseMoveHandler.bindAsEventListener(this), false);      }      else {         document.attachEvent( "onmouseup",   this._mouseUpHandler.bindAsEventListener(this) );         document.attachEvent( "onmousemove", this._mouseMoveHandler.bindAsEventListener(this) );      }   }}//var dndMgr = new Rico.DragAndDrop();//dndMgr.initializeEventHandlers();//-------------------- ricoDraggable.jsRico.Draggable = Class.create();Rico.Draggable.prototype = {   initialize: function( type, htmlElement ) {      this.type          = type;      this.htmlElement   = $(htmlElement);      this.selected      = false;   },   /**    *   Returns the HTML element that should have a mouse down event    *   added to it in order to initiate a drag operation    *    **/   getMouseDownHTMLElement: function() {      return this.htmlElement;   },   select: function() {      this.selected = true;      if ( this.showingSelected )         return;      var htmlElement = this.getMouseDownHTMLElement();      var color = Rico.Color.createColorFromBackground(htmlElement);      color.isBright() ? color.darken(0.033) : color.brighten(0.033);      this.saveBackground = RicoUtil.getElementsComputedStyle(htmlElement, "backgroundColor", "background-color");      htmlElement.style.backgroundColor = color.asHex();      this.showingSelected = true;   },   deselect: function() {      this.selected = false;      if ( !this.showingSelected )         return;      var htmlElement = this.getMouseDownHTMLElement();      htmlElement.style.backgroundColor = this.saveBackground;      this.showingSelected = false;   },   isSelected: function() {      return this.selected;   },   startDrag: function() {   },   cancelDrag: function() {   },   endDrag: function() {   },   getSingleObjectDragGUI: function() {      return this.htmlElement;   },   getMultiObjectDragGUI: function( draggables ) {      return this.htmlElement;   },   getDroppedGUI: function() {      return this.htmlElement;   },   toString: function() {      return this.type + ":" + this.htmlElement + ":";   }}//-------------------- ricoDropzone.jsRico.Dropzone = Class.create();Rico.Dropzone.prototype = {   initialize: function( htmlElement ) {      this.htmlElement  = $(htmlElement);      this.absoluteRect = null;   },   getHTMLElement: function() {      return this.htmlElement;   },   clearPositionCache: function() {      this.absoluteRect = null;   },   getAbsoluteRect: function() {      if ( this.absoluteRect == null ) {         var htmlElement = this.getHTMLElement();         var pos = RicoUtil.toViewportPosition(htmlElement);         this.absoluteRect = {            top:    pos.y,            left:   pos.x,            bottom: pos.y + htmlElement.offsetHeight,            right:  pos.x + htmlElement.offsetWidth         };      }      return this.absoluteRect;   },   activate: function() {      var htmlElement = this.getHTMLElement();      if (htmlElement == null  || this.showingActive)         return;      this.showingActive = true;      this.saveBackgroundColor = htmlElement.style.backgroundColor;      var fallbackColor = "#ffea84";      var currentColor = Rico.Color.createColorFromBackground(htmlElement);      if ( currentColor == null )         htmlElement.style.backgroundColor = fallbackColor;      else {         currentColor.isBright() ? currentColor.darken(0.2) : currentColor.brighten(0.2);         htmlElement.style.backgroundColor = currentColor.asHex();      }   },   deactivate: function() {      var htmlElement = this.getHTMLElement();      if (htmlElement == null || !this.showingActive)         return;      htmlElement.style.backgroundColor = this.saveBackgroundColor;      this.showingActive = false;      this.saveBackgroundColor = null;   },   showHover: function() {      var htmlElement = this.getHTMLElement();      if ( htmlElement == null || this.showingHover )         return;      this.saveBorderWidth = htmlElement.style.borderWidth;      this.saveBorderStyle = htmlElement.style.borderStyle;      this.saveBorderColor = htmlElement.style.borderColor;      this.showingHover = true;      htmlElement.style.borderWidth = "1px";      htmlElement.style.borderStyle = "solid";      //htmlElement.style.borderColor = "#ff9900";      htmlElement.style.borderColor = "#ffff00";   },   hideHover: function() {      var htmlElement = this.getHTMLElement();      if ( htmlElement == null || !this.showingHover )         return;      htmlElement.style.borderWidth = this.saveBorderWidth;      htmlElement.style.borderStyle = this.saveBorderStyle;      htmlElement.style.borderColor = this.saveBorderColor;      this.showingHover = false;   },   canAccept: function(draggableObjects) {      return true;   },   accept: function(draggableObjects) {      var htmlElement = this.getHTMLElement();      if ( htmlElement == null )         return;      n = draggableObjects.length;      for ( var i = 0 ; i < n ; i++ )      {         var theGUI = draggableObjects[i].getDroppedGUI();         if ( RicoUtil.getElementsComputedStyle( theGUI, "position" ) == "absolute" )         {            theGUI.style.position = "static";            theGUI.style.top = "";            theGUI.style.top = "";         }         htmlElement.appendChild(theGUI);      }   }}//-------------------- ricoEffects.js/**  *  Use the Effect namespace for effects.  If using scriptaculous effects  *  this will already be defined, otherwise we'll just create an empty  *  object for it... **/if ( window.Effect == undefined )   Effect = {};Effect.SizeAndPosition = Class.create();Effect.SizeAndPosition.prototype = {   initialize: function(element, x, y, w, h, duration, steps, options) {      this.element = $(element);      this.x = x;      this.y = y;      this.w = w;      this.h = h;      this.duration = duration;      this.steps    = steps;      this.options  = arguments[7] || {};      this.sizeAndPosition();   },   sizeAndPosition: function() {      if (this.isFinished()) {         if(this.options.complete) this.options.complete(this);         return;      }      if (this.timer)         clearTimeout(this.timer);      var stepDuration = Math.round(this.duration/this.steps) ;      // Get original values: x,y = top left corner;  w,h = width height      var currentX = this.element.offsetLeft;      var currentY = this.element.offsetTop;      var currentW = this.element.offsetWidth;      var currentH = this.element.offsetHeight;      // If values not set, or zero, we do not modify them, and take original as final as well      this.x = (this.x) ? this.x : currentX;      this.y = (this.y) ? this.y : currentY;      this.w = (this.w) ? this.w : currentW;      this.h = (this.h) ? this.h : currentH;      // how much do we need to modify our values for each step?      var difX = this.steps >  0 ? (this.x - currentX)/this.steps : 0;      var difY = this.steps >  0 ? (this.y - currentY)/this.steps : 0;      var difW = this.steps >  0 ? (this.w - currentW)/this.steps : 0;      var difH = this.steps >  0 ? (this.h - currentH)/this.steps : 0;      this.moveBy(difX, difY);      this.resizeBy(difW, difH);      this.duration -= stepDuration;      this.steps--;      this.timer = setTimeout(this.sizeAndPosition.bind(this), stepDuration);   },   isFinished: function() {      return this.steps <= 0;   },   moveBy: function( difX, difY ) {      var currentLeft = this.element.offsetLeft;      var currentTop  = this.element.offsetTop;      var intDifX     = parseInt(difX);      var intDifY     = parseInt(difY);      var style = this.element.style;      if ( intDifX != 0 )         style.left = (currentLeft + intDifX) + "px";      if ( intDifY != 0 )         style.top  = (currentTop + intDifY) + "px";   },   resizeBy: function( difW, difH ) {      var currentWidth  = this.element.offsetWidth;      var currentHeight = this.element.offsetHeight;      var intDifW       = parseInt(difW);      var intDifH       = parseInt(difH);      var style = this.element.style;      if ( intDifW != 0 )         style.width   = (currentWidth  + intDifW) + "px";      if ( intDifH != 0 )         style.height  = (currentHeight + intDifH) + "px";   }}Effect.Size = Class.create();Effect.Size.prototype = {   initialize: function(element, w, h, duration, steps, options) {      new Effect.SizeAndPosition(element, null, null, w, h, duration, steps, options);  }}Effect.Position = Class.create();Effect.Position.prototype = {   initialize: function(element, x, y, duration, steps, options) {      new Effect.SizeAndPosition(element, x, y, null, null, duration, steps, options);  }}Effect.Round = Class.create();Effect.Round.prototype = {   initialize: function(tagName, className, options) {      var elements = document.getElementsByTagAndClassName(tagName,className);      for ( var i = 0 ; i < elements.length ; i++ )         Rico.Corner.round( elements[i], options );   }};Effect.FadeTo = Class.create();Effect.FadeTo.prototype = {   initialize: function( element, opacity, duration, steps, options) {      this.element  = $(element);      this.opacity  = opacity;      this.duration = duration;      this.steps    = steps;      this.options  = arguments[4] || {};      this.fadeTo();   },   fadeTo: function() {      if (this.isFinished()) {         if(this.options.complete) this.options.complete(this);         return;      }      if (this.timer)         clearTimeout(this.timer);      var stepDuration = Math.round(this.duration/this.steps) ;      var currentOpacity = this.getElementOpacity();      var delta = this.steps > 0 ? (this.opacity - currentOpacity)/this.steps : 0;      this.changeOpacityBy(delta);      this.duration -= stepDuration;      this.steps--;      this.timer = setTimeout(this.fadeTo.bind(this), stepDuration);   },   changeOpacityBy: function(v) {      var currentOpacity = this.getElementOpacity();      var newOpacity = Math.max(0, Math.min(currentOpacity+v, 1));      this.element.ricoOpacity = newOpacity;      this.element.style.filter = "alpha(opacity:"+Math.round(newOpacity*100)+")";      this.element.style.opacity = newOpacity; /*//*/;   },   isFinished: function() {      return this.steps <= 0;   },   getElementOpacity: function() {      if ( this.element.ricoOpacity == undefined ) {         var opacity;         if ( this.element.currentStyle ) {            opacity = this.element.currentStyle.opacity;         }         else if ( document.defaultView.getComputedStyle != undefined ) {            var computedStyle = document.defaultView.getComputedStyle;            opacity = computedStyle(this.element, null).getPropertyValue('opacity');         }         this.element.ricoOpacity = opacity != undefined ? opacity : 1.0;      }      return parseFloat(this.element.ricoOpacity);   }}Effect.AccordionSize = Class.create();Effect.AccordionSize.prototype = {

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品一区二区三区蜜臀| 无吗不卡中文字幕| 久久久精品免费观看| 精品国产乱码久久久久久久 | 国产精品天干天干在线综合| 精品国产百合女同互慰| 欧美成人精品3d动漫h| 精品久久国产字幕高潮| 精品福利一区二区三区| 欧美精品一区二区三| 久久女同性恋中文字幕| 国产欧美一区二区在线| 国产精品少妇自拍| 国产精品你懂的在线| 中文字幕在线免费不卡| 亚洲天堂免费看| 亚洲一区在线视频观看| 婷婷中文字幕一区三区| 日本成人超碰在线观看| 另类中文字幕网| 国产乱理伦片在线观看夜一区| 国产成人在线看| 色域天天综合网| 欧美日韩激情一区| 日韩精品一区在线观看| 国产丝袜美腿一区二区三区| 国产精品青草久久| 亚洲制服欧美中文字幕中文字幕| 日本三级韩国三级欧美三级| 国产精品一区二区三区网站| 成人免费高清在线观看| 欧美视频在线观看一区二区| 欧美va在线播放| 国产精品理论在线观看| 亚洲一区二区三区四区中文字幕 | 欧美日韩www| 精品国产一区二区三区久久久蜜月| 欧美激情一区三区| 一区二区三区久久| 美脚の诱脚舐め脚责91| av亚洲精华国产精华精华| 在线免费观看成人短视频| 欧美一区二区黄| 中文字幕第一区| 亚洲www啪成人一区二区麻豆| 黄页视频在线91| 色美美综合视频| 欧美成人一区二区三区在线观看| 国产日韩精品一区二区三区在线| 亚洲午夜在线观看视频在线| 国产一区二区剧情av在线| 一本久久精品一区二区| 欧美精品一区二区三区蜜桃 | 色哟哟国产精品| 精品国产露脸精彩对白| 亚洲美腿欧美偷拍| 韩国v欧美v亚洲v日本v| 色吧成人激情小说| 337p粉嫩大胆噜噜噜噜噜91av| 一区二区免费看| 丰满少妇久久久久久久 | 视频一区欧美日韩| 欧美日韩精品一区二区在线播放| 欧美精品一区二区三区在线| 亚洲一区二区欧美| 国产99久久精品| 日韩视频一区二区三区 | 成人美女在线视频| 日韩午夜小视频| 亚洲一区中文日韩| 9久草视频在线视频精品| 精品国产一区二区三区av性色| 亚洲bt欧美bt精品777| 99久久精品国产一区| 欧美videos大乳护士334| 午夜天堂影视香蕉久久| 91视频精品在这里| 国产亚洲欧洲一区高清在线观看| 男女激情视频一区| 欧美日韩中字一区| 亚洲精品日韩一| 不卡的av网站| 久久蜜桃av一区精品变态类天堂 | 国产乱子伦一区二区三区国色天香| 欧美日韩视频专区在线播放| 亚洲图片另类小说| 成人国产精品免费观看视频| 国产色一区二区| 精品一区二区国语对白| 欧美一级精品大片| 午夜视频久久久久久| 在线国产亚洲欧美| 亚洲精品中文字幕在线观看| 色综合久久综合网欧美综合网| 中文字幕一区二区不卡| 国产91丝袜在线观看| 日本一区二区三区久久久久久久久不| 麻豆精品视频在线观看| 欧美肥胖老妇做爰| 水蜜桃久久夜色精品一区的特点| 欧美日韩一二区| 亚洲电影一区二区三区| 在线亚洲高清视频| 亚洲综合另类小说| 欧美亚洲免费在线一区| 亚洲国产精品久久艾草纯爱| 欧美人与禽zozo性伦| 午夜久久久影院| 538在线一区二区精品国产| 日韩精品久久久久久| 欧美色区777第一页| 日韩精品乱码av一区二区| 7777精品伊人久久久大香线蕉| 日本在线不卡视频| 日韩一级完整毛片| 精久久久久久久久久久| 国产色婷婷亚洲99精品小说| 99久久精品免费看国产| 国产成人自拍在线| 国产欧美一区二区精品婷婷| av成人免费在线观看| 一区二区三区不卡视频在线观看 | 欧美精品一区二区三区四区| 国产成人精品影院| 亚洲日韩欧美一区二区在线| 在线观看视频欧美| 日本人妖一区二区| 久久日韩精品一区二区五区| 国产不卡高清在线观看视频| 亚洲激情在线激情| 欧美一级免费大片| 国产一区欧美二区| 中文字幕一区二区三区四区不卡| 欧美色国产精品| 久久99国产乱子伦精品免费| 国产精品卡一卡二卡三| 欧美午夜精品电影| 久久99精品一区二区三区| 国产精品欧美极品| 欧美日韩一区在线| 国产呦萝稀缺另类资源| 亚洲天堂av一区| 7777精品伊人久久久大香线蕉超级流畅 | 26uuu欧美| 91丨porny丨最新| 老司机精品视频一区二区三区| 中文字幕免费一区| 欧美在线观看18| 国产精品一区久久久久| 一区av在线播放| 久久久久久一二三区| 欧美伊人久久久久久久久影院 | 99久久婷婷国产精品综合| 午夜欧美大尺度福利影院在线看 | 国产乱子轮精品视频| 亚洲黄色性网站| 久久婷婷一区二区三区| 91传媒视频在线播放| 国产综合色精品一区二区三区| 亚洲线精品一区二区三区 | 国产一区二区三区四区五区美女 | 国产馆精品极品| 午夜精品久久久久久久99樱桃| 国产日产欧美一区二区三区| 欧美精品自拍偷拍动漫精品| 不卡av在线网| 国产在线播放一区三区四| 亚洲综合视频在线观看| 欧美激情一区二区三区| 日韩一区二区中文字幕| 色欧美日韩亚洲| 懂色av中文字幕一区二区三区 | 欧美日韩在线三级| 成人app下载| 国产精品一二二区| 青青草97国产精品免费观看无弹窗版| 亚洲色图欧洲色图婷婷| 国产午夜三级一区二区三| 777亚洲妇女| 欧美日韩在线播放三区| 91丨九色丨蝌蚪丨老版| 岛国一区二区三区| 久久99日本精品| 日韩激情一区二区| 夜夜爽夜夜爽精品视频| 自拍偷拍国产亚洲| 久久久噜噜噜久久人人看| 日韩一区二区视频| 欧美欧美欧美欧美| 欧美日韩午夜影院| 一本色道a无线码一区v| 99久久精品99国产精品| 国产成人亚洲综合a∨婷婷| 老司机一区二区| 欧美aaaaa成人免费观看视频| 天堂va蜜桃一区二区三区| 亚洲成人激情综合网| 亚洲第一福利一区| 亚洲电影中文字幕在线观看| 亚洲午夜一区二区三区|