复制代码代码如下:
<html>
<cabeça>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Redimensionar</title>
<style type="texto/css">
#rRightDown,#rLeftDown,#rLeftUp,#rRightUp,#rRight,#rLeft,#rUp,#rDown{
posição:absoluta;plano de fundo:#C00;largura:6px;altura:6px;índice z:5;tamanho da fonte:0;}
#rLeftDown,#rRightUp{cursor:ne-resize;}
#rRightDown,#rLeftUp{cursor:nw-resize;}
#rDireita,#rEsquerda{cursor:e-resize;}
#rUp,#rDown{cursor:n-resize;}
#rRightDown{ inferior:-3px; direita:-3px;}
#rLeftDown{ inferior:-3px; esquerda:-3px;}
#rRightUp{ topo:-3px; direita:-3px;}
#rLeftUp{ topo:-3px; esquerda:-3px;}
#rDireita{direita:-3px; topo: 50%}
#rEsquerda{esquerda:-3px; topo: 50%}
#rUp{ topo:-3px; esquerda:50%}
#rDown{ inferior:-3px; esquerda:50%}
</estilo>
</head>
<corpo>
<div id='ss' style="altura:100px; largura:100px; borda:1px sólido #000000; posição:absoluta; esquerda:200px; topo:200px;" >
<div id="rRightDown"> </div>
<div id="rLeftDown"> </div>
<div id="rRightUp"> </div>
<div id="rLeftUp"> </div>
<div id="rRight"> </div>
<div id="rLeft"> </div>
<div id="rUp"> </div>
<div id="rDown"></div>
</div>
<roteiro>
var Sys = (função(ua){
vars = {};
s.IE = ua.match(/msie ([/d.]+)/)?true:false;
s.Firefox = ua.match(/firefox//([/d.]+)/)?true:false;
s.Chrome = ua.match(/chrome//([/d.]+)/)?true:false;
s.IE6 = (s.IE&&([/MSIE (/d)/.0/i.exec(navigator.userAgent)][0][1] == 6))?true:false;
s.IE7 = (s.IE&&([/MSIE (/d)/.0/i.exec(navigator.userAgent)][0][1] == 7))?true:false;
s.IE8 = (s.IE&&([/MSIE (/d)/.0/i.exec(navigator.userAgent)][0][1] == 8))?true:false;
retornar;
})(navigator.userAgent.toLowerCase());
var $ = função (id) {
retornar document.getElementById(id);
};
var Css = função(e,o){
para (var i em o)
e.estilo[i] = o[i];
};
var Extend = function(destino, origem) {
for (var propriedade na fonte) {
destino[propriedade] = origem[propriedade];
}
};
var Bind = function(objeto, diversão) {
var args = Array.prototype.slice.call(argumentos).slice(2);
função de retorno() {
retornar fun.apply(objeto, args);
}
};
var BindAsEventListener = function(objeto, diversão) {
var args = Array.prototype.slice.call(argumentos).slice(2);
função de retorno(evento) {
return fun.apply(objeto, [evento || janela.event].concat(args));
}
};
var EstiloAtual = função(elemento){
retornar elemento.currentStyle || document.defaultView.getComputedStyle(elemento,nulo);
};
função addListener(elemento,e,fn){
element.addEventListener?element.addEventListener(e,fn,false):element.attachEvent("on" + e,fn);
};
função removeListener(elemento,e,fn){
element.removeEventListener?element.removeEventListener(e,fn,false):element.detachEvent("on" + e,fn)
};
var Classe = função(propriedades){
var _class = function(){return (arguments[0] !== null && this.initialize && typeof(this.initialize) == 'function') ? this.initialize.apply(this, argumentos): this;};
_class.prototype = propriedades;
retornar _classe;
};
var Redimensionar =nova Classe({
inicializar: função(obj){
isto.obj = obj;
this.resizeelm = null;
isto.fun = null; //记录触发什么事件的索引
este.original = []; //记录开始状态的数组
esta.largura = null;
esta.altura = null;
this.fR = BindAsEventListener(this,this.resize);
isto.fS = Vincular(isto,isto.parar);
},
definir: função(olmo,direção){
if(!elm)return;
este.resizeelm = olmo;
addListener(this.resizeelm,'mousedown',BindAsEventListener(this, this.start, this[direção]));
devolva isso;
},
início: função(e,diversão){
this.fun = divertido;
this.original = [parseInt(CurrentStyle(this.obj).width),parseInt(CurrentStyle(this.obj).height),parseInt(CurrentStyle(this.obj).left),parseInt(CurrentStyle(this.obj). principal)];
esta.largura = (este.original[2]||0) + isto.original[0];
esta.altura = (este.original[3]||0) + isto.original[1];
addListener(document,"mousemove",this.fR);
addListener(documento,'mouseup',this.fS);
},
redimensionar : função(e){
isto.diversão(e);
Sys.IE?(this.resizeelm.onlosecapture=function(){this.fS()}):(this.resizeelm.onblur=function(){this.fS()})
},
parar: função(){
removeListener(documento, "mousemove", this.fR);
removeListener(documento, "mousemove", this.fS);
janela.getSelection? window.getSelection().removeAllRanges(): document.selection.empty();
},
para cima: função(e){
this.height>e.clientY?Css(this.obj,{top:e.clientY + "px",height:this.height-e.clientY + "px"}):this.turnDown(e);
},
para baixo: função(e){
e.clientY>this.original[3]?Css(this.obj,{top:this.original[3]+'px',height:e.clientY-this.original[3]+'px'}): this.turnUp(e);
},
esquerda: função(e){
e.clientX<this.width?Css(this.obj,{left:e.clientX +'px',width:this.width-e.clientX + "px"}):this.turnRight(e);
},
direita: função(e){
e.clientX>this.original[2]?Css(this.obj,{left:this.original[2]+'px',width:e.clientX-this.original[2]+"px"}): this.turnLeft(e);
},
leftUp:função(e){
isto.acima(e);este.esquerda(e);
},
esquerdaPara baixo:função(e){
isto.esquerda(e);este.baixo(e);
},
direita para cima:função(e){
isto.acima(e);este.direito(e);
},
direitaPara Baixo:função(e){
isto.certo(e);este.baixo(e);
},
turnDown : função(e){
Css(this.obj,{top:this.height+'px',height:e.clientY - this.height + 'px'});
},
turnUp : função(e){
Css(this.obj,{top: e.clientY +'px',height: this.original[3] - e.clientY +'px'});
},
virar à direita : função(e){
Css(this.obj,{left:this.width+'px',width:e.clientX- this.width +'px'});
},
virar à esquerda : função(e){
Css(this.obj,{left:e.clientX +'px',width:this.original[2]-e.clientX+'px'});
}
});
janela.onload=função(){
novo Resize($('ss')).set($('rUp'),'up').set($('rDown'),'down').set($('rLeft'),'left' ).set($('rDireita'),'direita').set($(' rLeftUp'),'leftUp').set($('rLeftDown'),'leftDown').set($('rRightDown'),'rightDown').set($('rRightUp'),'rightUp') ;
}
</script>
</body>
</html>