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

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

?? rico.js

?? grails用戶使用指南
?? 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 = {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品视频一区二区三区| 日韩成人精品在线| 亚洲国产精品久久人人爱蜜臀| 日韩电影在线一区二区三区| 成人18精品视频| 欧美一区二区黄色| 亚洲天堂2016| 春色校园综合激情亚洲| 欧美另类z0zxhd电影| 亚洲欧美影音先锋| 国产馆精品极品| 欧美一区二区视频观看视频| 亚洲免费在线视频一区 二区| 99久久精品免费看| 精品国内二区三区| 五月天亚洲婷婷| 欧美日韩五月天| 一个色妞综合视频在线观看| kk眼镜猥琐国模调教系列一区二区 | 亚洲私人黄色宅男| 国产成人啪免费观看软件| 日韩一区二区三区免费看| 亚洲国产精品久久久久秋霞影院| 91丨porny丨国产入口| 国产精品网站在线观看| 国产成人免费在线视频| 久久久久国产成人精品亚洲午夜| 黄色日韩网站视频| 久久久蜜桃精品| 国产伦精品一区二区三区免费迷| 欧美一级国产精品| 日韩av在线发布| 日韩色在线观看| 麻豆精品在线视频| 欧美精品一区二区高清在线观看 | 在线成人小视频| 日本不卡一区二区| 91精品国产入口| 久久超碰97中文字幕| 精品福利一区二区三区免费视频| 国产伦理精品不卡| 国产精品美女久久福利网站| 91在线视频免费观看| 亚洲一二三四区| 9191精品国产综合久久久久久| 人人精品人人爱| 国产午夜精品一区二区三区嫩草 | 99久久精品国产一区| 一区二区三区产品免费精品久久75| 欧美性高清videossexo| 首页欧美精品中文字幕| 久久亚洲欧美国产精品乐播| www.亚洲色图.com| 午夜欧美2019年伦理| 精品99999| 99精品国产99久久久久久白柏| 一区二区欧美精品| 欧美成人一区二区三区片免费| 国产91丝袜在线观看| 亚洲色图在线看| 91精品久久久久久久91蜜桃| 国产一区二区福利视频| 亚洲免费观看高清在线观看| 91精品国产综合久久久久久| 国产一级精品在线| 一区二区三区在线观看欧美| 337p粉嫩大胆噜噜噜噜噜91av | 一本久久精品一区二区| 蜜桃av一区二区三区| 国产精品久久影院| 日韩欧美视频在线| 成人午夜激情片| 蜜臀精品一区二区三区在线观看| 国产精品久久毛片| 欧美成人一级视频| 欧美色网站导航| 成人h动漫精品一区二区| 日韩成人免费电影| 一区二区三区欧美激情| 国产欧美一区二区三区鸳鸯浴| 欧美色综合影院| k8久久久一区二区三区 | 秋霞午夜av一区二区三区| 国产精品国产三级国产aⅴ入口| 91精品欧美久久久久久动漫| 99re成人精品视频| 国产精品一卡二卡| 日韩在线一二三区| 亚洲色图视频免费播放| 国产亚洲综合色| 日韩一区二区三区视频在线观看| 在线亚洲高清视频| 99视频精品免费视频| 国产精品中文字幕日韩精品| 日韩中文字幕91| 亚洲午夜久久久久久久久电影网| 欧美国产一区在线| 国产女人aaa级久久久级| 欧美成人乱码一区二区三区| 欧美做爰猛烈大尺度电影无法无天| 99在线精品一区二区三区| 国产成人午夜精品影院观看视频| 老汉av免费一区二区三区| 亚洲成国产人片在线观看| 亚洲精品视频在线观看免费| 亚洲免费观看在线视频| 日韩理论片一区二区| 亚洲色图视频网站| 一区二区三区免费| 一区二区三区.www| 亚洲与欧洲av电影| 亚洲激情图片qvod| 亚洲一区二区在线免费观看视频 | 国产精品久久久久三级| 国产日本欧洲亚洲| 国产色婷婷亚洲99精品小说| 久久久欧美精品sm网站| 国产日韩精品一区二区浪潮av | 色香蕉久久蜜桃| 欧美在线免费观看视频| 欧美夫妻性生活| 精品国产乱码久久久久久图片| 日韩久久久久久| 中文字幕精品—区二区四季| 国产精品久久久久久久久晋中 | 亚洲欧洲一区二区在线播放| 综合在线观看色| 亚洲国产日韩综合久久精品| 视频一区二区三区中文字幕| 麻豆精品国产91久久久久久| 国产精一区二区三区| 99这里只有久久精品视频| 91福利国产成人精品照片| 欧美一级xxx| www国产精品av| 中文字幕欧美日韩一区| 亚洲宅男天堂在线观看无病毒| 婷婷综合在线观看| 狠狠v欧美v日韩v亚洲ⅴ| 成人激情校园春色| 日本精品一区二区三区四区的功能| 欧美欧美午夜aⅴ在线观看| 欧美一区二区播放| 中文字幕久久午夜不卡| 亚洲一区二区三区中文字幕| 麻豆国产精品777777在线| 国产成a人亚洲| 欧美人与禽zozo性伦| 欧美tk丨vk视频| 亚洲久草在线视频| 久久91精品久久久久久秒播| av在线一区二区三区| 欧美一区二区视频网站| 中文字幕中文字幕中文字幕亚洲无线| 亚洲在线一区二区三区| 狠狠色狠狠色合久久伊人| 91九色最新地址| 337p日本欧洲亚洲大胆精品| 一区二区欧美国产| 国产福利一区二区三区视频在线 | 1000精品久久久久久久久| 日本不卡的三区四区五区| 成人免费视频视频| 日韩精品一区二区在线观看| 一区二区三区蜜桃| 国产成人精品影视| 欧美videos中文字幕| 亚洲自拍偷拍欧美| 9色porny自拍视频一区二区| 久久久久久电影| 日本伊人精品一区二区三区观看方式 | 奇米亚洲午夜久久精品| 色综合久久88色综合天天6| 国产无人区一区二区三区| 男女激情视频一区| 欧美日韩卡一卡二| 亚洲一区二区三区四区五区中文| 国产v综合v亚洲欧| 精品乱码亚洲一区二区不卡| 亚洲18色成人| 欧美色男人天堂| 亚洲一区二区三区自拍| 色婷婷激情综合| 中文字幕一区av| 豆国产96在线|亚洲| www日韩大片| 国产一区二区视频在线播放| 精品国精品自拍自在线| 毛片不卡一区二区| 日韩欧美成人一区二区| 日本中文字幕一区二区视频| 这里只有精品99re| 日本欧美在线看| 日韩视频免费观看高清在线视频| 丝袜诱惑制服诱惑色一区在线观看 | 毛片av中文字幕一区二区| 欧美一区二区三区免费在线看| 亚洲一区二区在线视频| 欧美日韩成人在线| 男男视频亚洲欧美|