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

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

?? showalbummodule.config

?? Nt Discuz論壇2.6版更改頭部導航欄插件
?? CONFIG
?? 第 1 頁 / 共 5 頁
字號:
    document.detachEvent("onmousemove", MzBehavior.Drag.mousemoveHandler);
    if(me.options.onfinish) me.options.onfinish(me);
  };

  this.mousedownHandler=function(e)
  {
    if(System.disabledList[me.hashCode]) return;
    e = window.event || e; var body=MzElement.body();
    var x = (e.pageX || e.clientX) + body.scrollLeft;
    var y = (e.pageY || e.clientY) + body.scrollTop;
    var xy = MzElement.realOffset(obj);
    MzBehavior.Drag.offsetX = x - xy.x;
    MzBehavior.Drag.offsetY = y - xy.y;

    layer.style.cursor = "move";
    layer.style.left = xy.x +"px";
    layer.style.top  = xy.y +"px";
    layer.style.width  = obj.offsetWidth  +"px";
    layer.style.height = obj.offsetHeight +"px";
    MzElement.show(layer);
    MzBehavior.Drag.instance=me;

    if(layer.setCapture) layer.setCapture(); else
    if(window.captureEvents)window.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);
    document.attachEvent("onmousemove", MzBehavior.Drag.mousemoveHandler);
    document.attachEvent("onmouseup",   me.mouseupHandler);
  }

  op.trigger.attachEvent("onmousedown", this.mousedownHandler);
}
MzBehavior.Drag.prototype.restore=function()
{
  this.element.removeAttribute(this.attributeName);
  this.element.detachEvent("onmousedown", this.mousedownHandler);
  this.dispose();
};
MzBehavior.Drag.createLayer=function()
{
  if(MzBehavior.dragLayer && MzBehavior.dragLayer.tagName) return;
  var layer=document.createElement("DIV");
  layer.id="MzBehaviorDragLayer";
  with(layer.style)
  {
    zIndex = System.zIndexBase.dragLayer;
    border = "none";
    cursor = "move";
    display = "none";
    position = "absolute";
    margin = padding = "0px";
    width = height = "20px";
    backgroundImage = "url("+ System.resourcePath +"/blank.gif)";
  }

  var str = new Array(); var border = "3px";
  str.push("<table border='0' cellpadding='0' cellspacing='0' style='");
  str.push("width:100%; height:100%; {0} repeat-x left bottom'><tr>");
  str.push("<td style='{0} repeat-y left top; {1}'>&nbsp;</td>");
  str.push("<td style='{0} repeat-x left top;'>&nbsp;</td>");
  str.push("<td style='{0} repeat-y right top; {1}'>&nbsp;</td>");
  str.push("</tr></table>"); str=str.join("");
  layer.innerHTML = str.format("background:url("+ System.resourcePath
    +"/dashed.gif)", "width:2px; font-size:1px;");

  document.body.insertBefore(layer, document.body.firstChild);
  layer = null;
  MzBehavior.dragLayer=MzElement.check("MzBehaviorDragLayer");
};
MzBehavior.Drag.mousemoveHandler=function(e)
{
  var SLT = MzElement.body();
  var D=MzBehavior.Drag, layer=MzBehavior.dragLayer;
  var BSL = SLT.scrollLeft, BST = SLT.scrollTop;
  var BCW = SLT.clientWidth, BCH = SLT.clientHeight;

  e = window.event || e;
  var  x = (e.pageX || e.clientX) + BSL;
  var  y = (e.pageY || e.clientY) + BST;
  D.left= Math.min(x - D.offsetX, BSL+BCW-layer.offsetWidth);
  D.top = Math.min(y - D.offsetY, BST+BCH-layer.offsetHeight);

  D.left= Math.max(0+BSL,  D.left);
  D.top = Math.max(0+BST,  D.top);

  layer.style.top  = D.top +"px";
  layer.style.left = D.left+"px";
};
MzBehavior.Drag.mouseupHandler=function()
{
  var layer = MzBehavior.dragLayer, e=MzBehavior.Drag.instance.element;
  e.style.left = layer.style.left;  e.style.top  = layer.style.top;
  if (layer.releaseCapture) layer.releaseCapture(); else
  if(window.captureEvents) window.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);
  MzElement.hide(layer);
};





//[static method]
MzBehavior.highlight=function(e, op){return new MzBehavior.Highlight(e, op);}
MzBehavior.emboss   =function(e, op){return new MzBehavior.Emboss(e, op);}
MzBehavior.rotate   =function(e, op){return new MzBehavior.Rotate(e, op);}
MzBehavior.marquee  =function(e, op){return new MzBehavior.Marquee(e, op);}
MzBehavior.fixed    =function(e, op){return new MzBehavior.Fixed(e, op);}
MzBehavior.drag     =function(e, op){return new MzBehavior.Drag(e, op);}
MzBehavior.lockWindow=function(bool){return     MzBehavior.LockWindow(bool);}

/*** MzEffect.js ***/

/*---------------------------------------------------------------------------*\
|  Subject:    Html Element effect base
|  NameSpace:  System.Web.Forms.MzEffect
|  Author:     meizz
|  Created:    2006-07-07
|  Version:    2007-04-13
\*---------------------------------------------------------------------------*/

/*/Interface
Required: initialize() render() finish() restore()
abort() end() cancel() dispose()
op.onbeforestart() op.onbeforeupdate() op.onafterupdate() op.onafterfinish()
/*/
//op{interval, duration, overlap, trend, continual}
function MzEffect()
{
  System.call(this);this.readyState=1;
  this.element=MzElement.check(arguments[0]);
  if(!this.element) return; var t;

  this.terminative=false;  //true for terminate effect

  var op=this.options=System.extend({
     "interval": 10   //milliseconds
    ,"duration": 800  //milliseconds
    ,"overlap":  false
    ,"continual": true
    ,"trend": "strengthen" //strengthen|weaken true|false
  },
    arguments[1]||{}
  );
  op["trend"]= ("boolean"==typeof(op["trend"]) && op["trend"]) ||
    ("string"==typeof(op["trend"])&&op["trend"].toLowerCase()=="strengthen");

  //prevent repeated effect
  if(!op.overlap){this.attribName="att_"+this._className.replace(/\W/g, "_");
  if(t=this.element.getAttribute(this.attribName))if(t=Instance(t))t.cancel();
  this.element.setAttribute(this.attribName, this.hashCode, 0);}

  this.beginTime = new Date().getTime();
  this.endTime = this.beginTime + op.duration;
  if(this.initialize) this.initialize();

  /*_onbeforestart*/ MzEffect.attachEvent(this, "_onbeforestart");
  /*onbeforestart*/  MzEffect.attachEvent(this, "onbeforestart");
  /*onbeforeupdate*/ MzEffect.attachEvent(this, "onbeforeupdate");
  /*onafterupdate*/  MzEffect.attachEvent(this, "onafterupdate");
  /*onafterfinish*/  MzEffect.attachEvent(this, "onafterfinish");

  this.dispatchEvent(new System.Event("_onbeforestart"));
  this.dispatchEvent(new System.Event("onbeforestart"));
  this.readyState=2;if(op.continual) this._process();else
  if(!this.restore){this.restore=function(){};this.dispose();}
};
t=MzEffect.Extends(System, "MzEffect");

t._process=function()
{
  var now = new Date().getTime(), me = this, op=this.options;
  if (now>=this.endTime)
  {
    if(this.render) this.render((op.trend==true ? 1 : 0));
    if(this.finish) this.finish(); this.readyState=4;
    this.dispatchEvent(new System.Event("onafterfinish"));
    this.dispose(); return;
  } if(op){

  var schedule = Math.sqrt((now-this.beginTime)/op.duration);
  if(op.trend!=true) schedule = Math.pow((this.endTime-now)/op.duration, 2);
  this.schedule = schedule;

  this.dispatchEvent(new System.Event("onbeforeupdate"));
  if(this.render)this.render(schedule);
  this.dispatchEvent(new System.Event("onafterupdate"));
  if(!this.terminative)

  this.timer=setTimeout(function(){me._process()},op.interval); else
  try{this.element.removeAttribute(this.attribName);}catch(ex){}}
  me.readyState=3; 
};
t.abort=function(){if(this.timer)clearTimeout(this.timer);};
t.end=function()
{
  if(this.readyState==4) return;
  if(this.timer) clearTimeout(this.timer);
  this.endTime = this.beginTime; this._process();
}
t.cancel=function()
{
  this.endTime = this.beginTime;
  if(this.timer)  clearTimeout(this.timer);
  if(this.restore) this.restore();
  this.dispose();
};
t.dispose=function()
{
  if(this.element)this.element.removeAttribute(this.attribName);
  //System.prototype.dispose.call(this);
  if(System.ie) CollectGarbage();
};
MzEffect.attachEvent=function(T, type)
{
  //if(T.options&&typeof(T.options[type])=="function")
  //  T.addEventListener(type, function(e){T.options[type](e)});
};
MzEffect.formatColor=function(color)
{
  if(/^\#[\da-z]{6}$/i.test(color)) return color;
  else if(color.indexOf("rgb(")==0)
  {
    var cs=color.substring(4, color.length-1).split(",");
    for(var i=0, color="#"; i<cs.length; i++)
    {
      var s = parseInt(cs[i]).toString(16);
      color+= ("00"+ s).substr(s.length);
    }
    return color;
  }
  return "";
};


/*--====== core effect ======--*/
//op{interval, duration, trend}
MzEffect.Opacity=function(element, op)
{
  op = System.extend({interval: 20}, op||{});
  op.simple = (System.ie && MzBrowser.version<5.5)
    || (MzBrowser.opera  && MzBrowser.version<8.5);
  MzEffect.apply(this, [element, op]);
};
MzEffect.Opacity.Extends(MzEffect, "MzEffect.Opacity").initialize=function()
{
  var op=this.options, obj=this.element, me=this;
  this.render=function(schedule)
  {
    schedule = me.schedule || schedule;
    if(op.simple){me.endTime-=op.duration; return;}
    if(!System.ie)
    {
      obj.style.opacity = schedule;
      obj.style.MozOpacity = schedule;
      obj.style.KHTMLOpacity = schedule;
    }
    else obj.style.filter = "alpha(opacity:"+Math.round(schedule*100)+")";
  };
  if (System.ie)op.originalFilter = obj.style.filter; else
  {
    op.originalOpacity = obj.style.opacity;
    op.originalMozOpacity = obj.style.MozOpacity;
    op.originalKHTMLOpacity = obj.style.KHTMLOpacity;
  }
  this.restore=function()
  {
    if(System.ie) obj.style.filter = op.originalFilter; else
    {
      obj.style.opacity = op.originalOpacity;
      obj.style.MozOpacity = op.originalMozOpacity;
      obj.style.KHTMLOpacity = op.originalKHTMLOpacity;
    }
  };
};

//op{interval, duration, trend}
MzEffect.MoveBy=function(element, x, y, op)
{
  if("undefined"==typeof x || "undefined"==typeof y) return;
  this.offsetX=parseFloat(x);
  this.offsetY=parseFloat(y);
  op=System.extend({duration: 400}, op||{});
  MzEffect.apply(this, [element, op]);
};
MzEffect.MoveBy.Extends(MzEffect, "MzEffect.MoveBy").initialize=function()
{
  var me=this, obj=me.element, op=me.options;
  op.originalTop  = obj.style.top;
  op.originalLeft = obj.style.left;
  op.originalPosition = obj.style.position;
  me.originalY = parseFloat(obj.style.top  || '0');
  me.originalX = parseFloat(obj.style.left || '0');
  if(obj.style.position == "") obj.style.position = "relative";

  this.render=function(schedule)
  {
    schedule = me.schedule || schedule;
    obj.style.left = (me.offsetX * schedule + me.originalX) +"px";
    obj.style.top  = (me.offsetY * schedule + me.originalY) +"px";
  };
  this.setPosition=function(x, y)
  {
    obj.style.top  = y +"px";
    obj.style.left = x +"px";
  };
  this.restore=function()
  {
    obj.style.top  = op.originalTop;
    obj.style.left = op.originalLeft;
    obj.style.position = op.originalPosition;
  };
};

//op{interval, duration, trend}
MzEffect.MoveTo=function(element, op)
{
  if(!op&&("undefined"==typeof op.x||"undefined"==typeof op.y)) return;
  this.x=parseFloat(op.x);this.y=parseFloat(op.y);
  op=System.extend({duration: 300}, op||{});
  MzEffect.apply(this, [element, op]);
};
MzEffect.MoveTo.Extends(MzEffect, "MzEffect.MoveTo").initialize=function()
{
  var me=this, obj=me.element, op=me.options;
  op.originalTop  = obj.style.top;
  op.originalLeft = obj.style.left;
  op.originalPosition = obj.style.position;
  me.originalY = parseFloat(obj.style.top  || '0');
  me.originalX = parseFloat(obj.style.left || '0');
  me.offsetX = me.x - me.originalX;
  me.offsetY = me.y - me.originalY;
  if((obj.currentStyle && obj.currentStyle.position== "static")
    || obj.style.position == "") obj.style.position = "relative";

  this.render=function(schedule)
  {
    schedule = me.schedule || schedule;
    obj.style.left = (me.offsetX * schedule + me.originalX) +"px";
    obj.style.top  = (me.offsetY * schedule + me.originalY) +"px";
  };
  this.setPosition=function(x, y)
  {
    obj.style.top  = y +"px";
    obj.style.left = x +"px";
  };
  this.restore=function()
  {
    obj.style.top  = op.originalTop;
    obj.style.left = op.originalLeft;
    obj.style.position = op.originalPosition;
  };
};

//op{interval, duration, trend, color, beginColor, endColor, finalColor}
MzEffect.Highlight=function(element, op){MzEffect.apply(this, arguments);};
MzEffect.Highlight.Extends(MzEffect, "MzEffect.Highlight").initialize=function()
{
  var op=this.options, obj=this.element, endColor="#FFFFFF";
  var backColor = (obj.currentStyle||obj.style).backgroundColor;
  op.originalBgColor = obj.style.backgroundColor;
  op.originalColor = obj.style.color;
  if(backColor) endColor = MzEffect.formatColor(backColor);
  op.beginColor = op.beginColor || "#FFFF00";
  op.endColor   = op.endColor || endColor;
  op.finalColor = op.finalColor || obj.style.backgroundColor;

  this.colors_base=[
    parseInt(op.beginColor.substring(1,3),16),
    parseInt(op.beginColor.substring(3,5),16),
    parseInt(op.beginColor.substr(5),16)];
  this.colors_var=[
    parseInt(op.endColor.substring(1,3),16)-this.colors_base[0],
    parseInt(op.endColor.substring(3,5),16)-this.colors_base[1],
    parseInt(op.endColor.substr(5),16)-this.colors_base[2]];

  this.finish=function()
  {
    if(op.color) obj.style.color = op.color;
    obj.style.backgroundColor = op.final

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91免费国产在线| 色先锋久久av资源部| 国产亚洲精品精华液| 亚洲免费在线视频一区 二区| 麻豆成人在线观看| 在线免费精品视频| 国产蜜臀av在线一区二区三区| 亚洲一区二区精品久久av| 国产成人亚洲综合a∨婷婷图片| 欧美日韩日日夜夜| 亚洲精品中文字幕乱码三区| 国产91精品在线观看| 精品国产一区二区三区不卡 | 久久亚洲综合色| 亚洲一区免费在线观看| 99免费精品在线| 国产亲近乱来精品视频 | 99re成人精品视频| 精品国产髙清在线看国产毛片| 亚洲午夜精品在线| 97精品电影院| 亚洲三级电影全部在线观看高清| 国产精品自拍三区| 亚洲精品在线观看网站| 久久se精品一区二区| 日韩一区二区三区视频在线 | 大胆亚洲人体视频| 欧美精品一区二区三区蜜臀| 免费看欧美女人艹b| 制服丝袜亚洲播放| 五月综合激情网| 欧美久久一二区| 爽好多水快深点欧美视频| 欧美日韩在线不卡| 午夜精品福利在线| 欧美老女人在线| 日韩一区精品字幕| 日韩欧美视频一区| 韩国女主播成人在线观看| 精品国产区一区| 国产成人在线视频网址| 国产精品国产三级国产aⅴ入口| 成人综合婷婷国产精品久久蜜臀| 中文一区二区完整视频在线观看| a在线播放不卡| 亚洲精品美腿丝袜| 欧美二区在线观看| 美女www一区二区| 中文字幕欧美三区| 91欧美一区二区| 午夜亚洲国产au精品一区二区| 欧美日韩电影在线播放| 国产一区二区在线看| 国产欧美一区二区精品久导航| av成人老司机| 亚洲午夜国产一区99re久久| 欧美一二三四区在线| 国产一区二区成人久久免费影院| 中文字幕av免费专区久久| 91久久线看在观草草青青| 日韩激情中文字幕| 久久精品男人的天堂| 91麻豆精东视频| 日本va欧美va瓶| 欧美激情在线看| 欧美日韩国产免费| 国产91高潮流白浆在线麻豆| 亚洲精品国产精品乱码不99| 日韩一级片在线观看| 成人黄色国产精品网站大全在线免费观看| 亚洲品质自拍视频| 日韩欧美黄色影院| 91国偷自产一区二区三区观看| 日本中文在线一区| 国产精品高清亚洲| 日韩视频在线观看一区二区| av激情成人网| 老司机免费视频一区二区| 亚洲欧美国产77777| 欧美大片在线观看| 欧美丝袜丝nylons| 成人性生交大片免费看在线播放 | 一区二区三区资源| 久久亚洲综合色| 欧美一区二区女人| 日本高清不卡视频| av激情综合网| 高清日韩电视剧大全免费| 久久机这里只有精品| 亚洲午夜免费电影| 亚洲色图制服诱惑 | 亚洲成人动漫在线观看| 欧美国产视频在线| 精品粉嫩aⅴ一区二区三区四区| 欧美艳星brazzers| jlzzjlzz亚洲女人18| 国产成人亚洲综合a∨婷婷图片| 免费人成精品欧美精品| 亚洲一区二区三区国产| 亚洲欧美日韩精品久久久久| 欧美国产日本韩| 久久视频一区二区| 日韩欧美一卡二卡| 日韩情涩欧美日韩视频| 欧美乱妇20p| 欧美日韩黄色一区二区| 欧美在线观看你懂的| 色婷婷综合久久久中文一区二区| 成人av在线播放网址| 国产成人自拍高清视频在线免费播放| 久久精品国产亚洲a| 日韩黄色免费网站| 视频一区欧美精品| 日韩成人一级大片| 日韩国产在线观看一区| 日韩精品免费视频人成| 免费成人在线网站| 久久99最新地址| 国产一区二区三区久久悠悠色av| 精品一区二区综合| 国产在线精品一区在线观看麻豆| 美女在线视频一区| 狠狠色狠狠色综合系列| 国产乱人伦偷精品视频不卡| 国产精品夜夜嗨| 成人18视频在线播放| 91网站在线播放| 欧美午夜免费电影| 欧美一区二区三区免费| 欧美成人一区二区三区片免费| 精品日韩av一区二区| 久久久一区二区| 综合精品久久久| 偷偷要91色婷婷| 国产自产v一区二区三区c| 国产成人精品网址| 97精品久久久午夜一区二区三区| 色狠狠av一区二区三区| 欧美群妇大交群的观看方式| 欧美mv和日韩mv的网站| 国产欧美久久久精品影院| 亚洲天堂福利av| 日本成人在线网站| 国产寡妇亲子伦一区二区| 99热精品国产| 欧美大片在线观看| 国产精品福利在线播放| 日韩制服丝袜av| 成人午夜又粗又硬又大| 欧美日本韩国一区二区三区视频| 久久精品夜夜夜夜久久| 亚洲最新视频在线播放| 精彩视频一区二区三区| 日本韩国一区二区三区视频| 精品国产免费一区二区三区香蕉| 亚洲欧洲成人精品av97| 老汉av免费一区二区三区| 99久久夜色精品国产网站| 91精品国产麻豆| 国产精品久久久久久久久搜平片| 三级欧美韩日大片在线看| 成人激情动漫在线观看| 欧美一区二区播放| 亚洲黄色录像片| 国产成人精品1024| 91精品黄色片免费大全| 亚洲欧美日本韩国| 国产成人免费9x9x人网站视频| 91国偷自产一区二区三区成为亚洲经典 | 亚洲国产成人一区二区三区| 日韩av中文在线观看| 91在线视频网址| 久久一区二区三区国产精品| 亚洲一卡二卡三卡四卡| 成人激情开心网| 久久网站最新地址| 日韩精品欧美成人高清一区二区| 91女厕偷拍女厕偷拍高清| 久久精品夜夜夜夜久久| 免费高清在线一区| 欧美日韩免费一区二区三区视频| 中文字幕一区二区三| 国产精品99久久久久久宅男| 日韩一级大片在线观看| 亚洲国产视频一区二区| 色诱亚洲精品久久久久久| 国产精品美女久久福利网站| 国内精品嫩模私拍在线| 欧美大度的电影原声| 首页亚洲欧美制服丝腿| 欧美日韩电影在线播放| 午夜精彩视频在线观看不卡| 在线观看日韩精品| 亚洲乱码国产乱码精品精的特点| 成人a免费在线看| 亚洲欧洲三级电影| 99精品久久99久久久久| 专区另类欧美日韩| 一本色道a无线码一区v| 一区二区三区中文免费|