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

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

?? effects.js

?? blog,介紹:ui層是用ext做的
?? JS
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/*
 * Ext JS Library 1.0 Beta 1
 * Copyright(c) 2006-2007, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://www.extjs.com/license
 */

// script.aculo.us effects.js v1.7.0, Fri Jan 19 19:16:36 CET 2007// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)// Contributors://  Justin Palmer (http://encytemedia.com/)//  Mark Pilgrim (http://diveintomark.org/)//  Martin Bialasinki// // script.aculo.us is freely distributable under the terms of an MIT-style license.// For details, see the script.aculo.us web site: http://script.aculo.us/ // converts rgb() and #xxx to #xxxxxx format,  // returns self (or first argument) if not convertable  String.prototype.parseColor = function() {    var color = '#';  if(this.slice(0,4) == 'rgb(') {      var cols = this.slice(4,this.length-1).split(',');      var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3);    } else {      if(this.slice(0,1) == '#') {        if(this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase();        if(this.length==7) color = this.toLowerCase();      }    }    return(color.length==7 ? color : (arguments[0] || this));  }/*--------------------------------------------------------------------------*/Element.collectTextNodes = function(element) {    return $A($(element).childNodes).collect( function(node) {    return (node.nodeType==3 ? node.nodeValue :       (node.hasChildNodes() ? Element.collectTextNodes(node) : ''));  }).flatten().join('');}Element.collectTextNodesIgnoreClass = function(element, className) {    return $A($(element).childNodes).collect( function(node) {    return (node.nodeType==3 ? node.nodeValue :       ((node.hasChildNodes() && !Element.hasClassName(node,className)) ?         Element.collectTextNodesIgnoreClass(node, className) : ''));  }).flatten().join('');}Element.setContentZoom = function(element, percent) {  element = $(element);    element.setStyle({fontSize: (percent/100) + 'em'});     if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0);  return element;}Element.getOpacity = function(element){  return $(element).getStyle('opacity');}Element.setOpacity = function(element, value){  return $(element).setStyle({opacity:value});}Element.getInlineOpacity = function(element){  return $(element).style.opacity || '';}Element.forceRerendering = function(element) {  try {    element = $(element);    var n = document.createTextNode(' ');    element.appendChild(n);    element.removeChild(n);  } catch(e) { }};/*--------------------------------------------------------------------------*/Array.prototype.call = function() {  var args = arguments;  this.each(function(f){ f.apply(this, args) });}/*--------------------------------------------------------------------------*/var Effect = {  _elementDoesNotExistError: {    name: 'ElementDoesNotExistError',    message: 'The specified DOM element does not exist, but is required for this effect to operate'  },  tagifyText: function(element) {    if(typeof Builder == 'undefined')      throw("Effect.tagifyText requires including script.aculo.us' builder.js library");          var tagifyStyle = 'position:relative';    if(/MSIE/.test(navigator.userAgent) && !window.opera) tagifyStyle += ';zoom:1';        element = $(element);    $A(element.childNodes).each( function(child) {      if(child.nodeType==3) {        child.nodeValue.toArray().each( function(character) {          element.insertBefore(            Builder.node('span',{style: tagifyStyle},              character == ' ' ? String.fromCharCode(160) : character),               child);        });        Element.remove(child);      }    });  },  multiple: function(element, effect) {    var elements;    if(((typeof element == 'object') ||         (typeof element == 'function')) &&        (element.length))      elements = element;    else      elements = $(element).childNodes;          var options = Object.extend({      speed: 0.1,      delay: 0.0    }, arguments[2] || {});    var masterDelay = options.delay;    $A(elements).each( function(element, index) {      new effect(element, Object.extend(options, { delay: index * options.speed + masterDelay }));    });  },  PAIRS: {    'slide':  ['SlideDown','SlideUp'],    'blind':  ['BlindDown','BlindUp'],    'appear': ['Appear','Fade']  },  toggle: function(element, effect) {    element = $(element);    effect = (effect || 'appear').toLowerCase();    var options = Object.extend({      queue: { position:'end', scope:(element.id || 'global'), limit: 1 }    }, arguments[2] || {});    Effect[element.visible() ?       Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options);  }};var Effect2 = Effect; // deprecated/* ------------- transitions ------------- */Effect.Transitions = {  linear: Prototype.K,  sinoidal: function(pos) {    return (-Math.cos(pos*Math.PI)/2) + 0.5;  },  reverse: function(pos) {    return 1-pos;  },  flicker: function(pos) {    return ((-Math.cos(pos*Math.PI)/4) + 0.75) + Math.random()/4;  },  wobble: function(pos) {    return (-Math.cos(pos*Math.PI*(9*pos))/2) + 0.5;  },  pulse: function(pos, pulses) {     pulses = pulses || 5;     return (      Math.round((pos % (1/pulses)) * pulses) == 0 ?             ((pos * pulses * 2) - Math.floor(pos * pulses * 2)) :         1 - ((pos * pulses * 2) - Math.floor(pos * pulses * 2))      );  },  none: function(pos) {    return 0;  },  full: function(pos) {    return 1;  }};/* ------------- core effects ------------- */Effect.ScopedQueue = Class.create();Object.extend(Object.extend(Effect.ScopedQueue.prototype, Enumerable), {  initialize: function() {    this.effects  = [];    this.interval = null;  },  _each: function(iterator) {    this.effects._each(iterator);  },  add: function(effect) {    var timestamp = new Date().getTime();        var position = (typeof effect.options.queue == 'string') ?       effect.options.queue : effect.options.queue.position;        switch(position) {      case 'front':        // move unstarted effects after this effect          this.effects.findAll(function(e){ return e.state=='idle' }).each( function(e) {            e.startOn  += effect.finishOn;            e.finishOn += effect.finishOn;          });        break;      case 'with-last':        timestamp = this.effects.pluck('startOn').max() || timestamp;        break;      case 'end':        // start effect after last queued effect has finished        timestamp = this.effects.pluck('finishOn').max() || timestamp;        break;    }        effect.startOn  += timestamp;    effect.finishOn += timestamp;    if(!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit))      this.effects.push(effect);        if(!this.interval)       this.interval = setInterval(this.loop.bind(this), 15);  },  remove: function(effect) {    this.effects = this.effects.reject(function(e) { return e==effect });    if(this.effects.length == 0) {      clearInterval(this.interval);      this.interval = null;    }  },  loop: function() {    var timePos = new Date().getTime();    for(var i=0, len=this.effects.length;i<len;i++)       if(this.effects[i]) this.effects[i].loop(timePos);  }});Effect.Queues = {  instances: $H(),  get: function(queueName) {    if(typeof queueName != 'string') return queueName;        if(!this.instances[queueName])      this.instances[queueName] = new Effect.ScopedQueue();          return this.instances[queueName];  }}Effect.Queue = Effect.Queues.get('global');Effect.DefaultOptions = {  transition: Effect.Transitions.sinoidal,  duration:   1.0,   // seconds  fps:        60.0,  // max. 60fps due to Effect.Queue implementation  sync:       false, // true for combining  from:       0.0,  to:         1.0,  delay:      0.0,  queue:      'parallel'}Effect.Base = function() {};Effect.Base.prototype = {  position: null,  start: function(options) {    this.options      = Object.extend(Object.extend({},Effect.DefaultOptions), options || {});    this.currentFrame = 0;    this.state        = 'idle';    this.startOn      = this.options.delay*1000;    this.finishOn     = this.startOn + (this.options.duration*1000);    this.event('beforeStart');    if(!this.options.sync)      Effect.Queues.get(typeof this.options.queue == 'string' ?         'global' : this.options.queue.scope).add(this);  },  loop: function(timePos) {    if(timePos >= this.startOn) {      if(timePos >= this.finishOn) {        this.render(1.0);        this.cancel();        this.event('beforeFinish');        if(this.finish) this.finish();         this.event('afterFinish');        return;        }      var pos   = (timePos - this.startOn) / (this.finishOn - this.startOn);      var frame = Math.round(pos * this.options.fps * this.options.duration);      if(frame > this.currentFrame) {        this.render(pos);        this.currentFrame = frame;      }    }  },  render: function(pos) {    if(this.state == 'idle') {      this.state = 'running';      this.event('beforeSetup');      if(this.setup) this.setup();      this.event('afterSetup');    }    if(this.state == 'running') {      if(this.options.transition) pos = this.options.transition(pos);      pos *= (this.options.to-this.options.from);      pos += this.options.from;      this.position = pos;      this.event('beforeUpdate');      if(this.update) this.update(pos);      this.event('afterUpdate');    }  },  cancel: function() {    if(!this.options.sync)      Effect.Queues.get(typeof this.options.queue == 'string' ?         'global' : this.options.queue.scope).remove(this);    this.state = 'finished';  },  event: function(eventName) {    if(this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this);    if(this.options[eventName]) this.options[eventName](this);  },  inspect: function() {    var data = $H();    for(property in this)      if(typeof this[property] != 'function') data[property] = this[property];    return '#<Effect:' + data.inspect() + ',options:' + $H(this.options).inspect() + '>';  }}Effect.Parallel = Class.create();Object.extend(Object.extend(Effect.Parallel.prototype, Effect.Base.prototype), {  initialize: function(effects) {    this.effects = effects || [];    this.start(arguments[1]);  },  update: function(position) {    this.effects.invoke('render', position);  },  finish: function(position) {    this.effects.each( function(effect) {      effect.render(1.0);      effect.cancel();      effect.event('beforeFinish');      if(effect.finish) effect.finish(position);      effect.event('afterFinish');    });  }});Effect.Event = Class.create();Object.extend(Object.extend(Effect.Event.prototype, Effect.Base.prototype), {  initialize: function() {    var options = Object.extend({      duration: 0    }, arguments[0] || {});    this.start(options);  },  update: Prototype.emptyFunction});Effect.Opacity = Class.create();Object.extend(Object.extend(Effect.Opacity.prototype, Effect.Base.prototype), {  initialize: function(element) {    this.element = $(element);

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
婷婷久久综合九色综合绿巨人 | 国产精品主播直播| 亚洲另类色综合网站| 久久嫩草精品久久久精品一| 欧美一级片在线看| 欧美日韩一区二区三区不卡| 91亚洲精品久久久蜜桃网站| 另类中文字幕网| 免费精品99久久国产综合精品| 亚洲美女屁股眼交| 亚洲欧美日韩国产一区二区三区| 国产精品毛片a∨一区二区三区| 国产成人午夜99999| 国产综合久久久久久鬼色 | 一本久久综合亚洲鲁鲁五月天 | 欧美剧在线免费观看网站| 色欧美日韩亚洲| 99国产精品久久久久久久久久久| 成人激情校园春色| 丁香六月久久综合狠狠色| 国产成人免费视频一区| 国产精品影视在线| 国产一区二区毛片| 国产精品 欧美精品| 成人av中文字幕| 99在线精品免费| 极品少妇xxxx精品少妇| 久久精品99国产国产精| 狠狠色丁香九九婷婷综合五月| 粉嫩久久99精品久久久久久夜| 国产精品夜夜嗨| 成人精品免费网站| 国内精品久久久久影院薰衣草 | 天天综合色天天综合色h| 一区二区三区蜜桃| 午夜精品久久久久久久99水蜜桃 | 午夜精品福利一区二区三区蜜桃| 一区二区三区蜜桃| 丝袜美腿亚洲一区| 国内外精品视频| 91精品国产高清一区二区三区蜜臀 | 久久久精品黄色| 国产欧美视频一区二区三区| 中文字幕日韩一区二区| 精品对白一区国产伦| 18欧美亚洲精品| 18成人在线观看| 亚洲人吸女人奶水| 亚洲欧美在线另类| 日日欢夜夜爽一区| 不卡的看片网站| 久久亚区不卡日本| 亚洲高清免费视频| 不卡av免费在线观看| 91精品婷婷国产综合久久性色| 国产精品久久午夜夜伦鲁鲁| 一区二区三区欧美在线观看| 国产一区二区三区最好精华液| 99国内精品久久| 欧美日韩电影一区| 国产欧美日韩精品一区| 亚洲国产视频一区| 国产成人免费9x9x人网站视频| 在线中文字幕不卡| 欧美年轻男男videosbes| 91麻豆精品国产91久久久久久久久| 国产精品久久久久久久久久免费看| 丝袜脚交一区二区| 欧美一区二区三区在线看| 亚洲精品va在线观看| 成人av网站免费观看| 久久综合久色欧美综合狠狠| 亚洲一区二区av在线| 欧美日韩一区中文字幕| 亚洲精品你懂的| 欧美日韩色综合| 日日摸夜夜添夜夜添精品视频| 成人国产亚洲欧美成人综合网| 3d动漫精品啪啪| 亚洲第一精品在线| 日韩丝袜情趣美女图片| 寂寞少妇一区二区三区| 中文字幕不卡三区| 成人app在线| 亚洲一区二区中文在线| 日韩欧美第一区| 韩国一区二区在线观看| 久久久精品免费观看| av网站免费线看精品| 亚洲高清在线精品| 久久久久久久av麻豆果冻| 粉嫩av亚洲一区二区图片| 亚洲精品综合在线| 精品久久免费看| 91首页免费视频| 另类综合日韩欧美亚洲| 精品久久久网站| 麻豆国产欧美一区二区三区| 日韩视频一区二区三区| 国产老妇另类xxxxx| 久久综合色一综合色88| 国产精品一二三| 免费观看在线色综合| 亚洲另类春色校园小说| 久久久久一区二区三区四区| 欧美日韩夫妻久久| 成人在线视频一区二区| 一区二区三区不卡在线观看| 91精品国产综合久久精品app| 国内成人自拍视频| 一区二区欧美在线观看| 精品日韩av一区二区| 99vv1com这只有精品| 久久国产精品99久久久久久老狼 | 蜜臀久久久久久久| 亚洲一区二区三区视频在线| 国产亚洲一二三区| 日韩欧美电影在线| 在线观看视频欧美| 大胆亚洲人体视频| 韩国一区二区三区| 亚洲国产欧美在线人成| **网站欧美大片在线观看| 天堂资源在线中文精品| 亚洲精品一区二区三区四区高清 | 亚洲一二三四在线| 久久午夜电影网| 久久久亚洲精品一区二区三区| 久久丝袜美腿综合| 国产视频一区在线播放| 国产精品午夜在线观看| 精品sm捆绑视频| 91精品一区二区三区在线观看| 在线视频综合导航| 91一区一区三区| 99re免费视频精品全部| 91天堂素人约啪| 国产精品一区二区久久精品爱涩| 亚洲成人激情综合网| 亚洲黄色av一区| 亚洲黄色录像片| 国产精品美女久久久久高潮| 亚洲视频一区二区在线| 亚洲欧美日韩久久| 亚洲精品伦理在线| 久草在线在线精品观看| 国产一区二区精品久久| 不卡在线观看av| 91黄色免费版| 色播五月激情综合网| 欧美一区二区三区免费在线看 | 日韩一级二级三级| 欧美日本不卡视频| 欧美性极品少妇| 制服丝袜中文字幕亚洲| 在线一区二区三区四区| 精品成人一区二区三区| 欧美一区二视频| 日韩一级片在线观看| 久久婷婷成人综合色| 亚洲激情欧美激情| 91丨九色丨国产丨porny| 久久久久综合网| 日韩av一区二区三区四区| 99精品欧美一区| 成人性视频免费网站| 在线免费亚洲电影| 精品国产乱码久久久久久影片| 中文字幕高清不卡| 毛片av一区二区| 在线观看一区二区精品视频| 欧美日韩中文字幕精品| 欧美一卡二卡三卡四卡| 久久精品亚洲精品国产欧美kt∨| 亚洲国产高清在线| 国模套图日韩精品一区二区| 91老师片黄在线观看| 精品国产一区久久| 亚洲日本va午夜在线电影| 免费xxxx性欧美18vr| 色猫猫国产区一区二在线视频| 亚洲国产电影在线观看| 国产伦精品一区二区三区视频青涩 | 国产成人免费xxxxxxxx| 精品美女被调教视频大全网站| 亚洲国产综合91精品麻豆 | 国产精品一区免费视频| 日韩视频一区二区| 久久99久久精品| 欧美精品一区二区三区很污很色的| 日韩福利视频导航| 在线观看中文字幕不卡| 中文字幕一区在线观看| 国产毛片精品一区| 国产日韩欧美精品在线| 岛国一区二区在线观看| 久久亚洲私人国产精品va媚药| 精品写真视频在线观看| 日韩欧美亚洲国产精品字幕久久久 | 青青草成人在线观看|