📄 ruzeeborders.js
字号:
e.appendChild(line); } var ce={ el:e, ps:top?this.psT:this.psB }; if(top) ce.inSh=this.inSh; RUZEE.Borders.cache[this.cacheID+'.'+top]=ce; return e; }, /** Create the left and right of the border */ crLR:function(e){ var coBgInS=rzC2S(this.coBgIn); var coBS=rzC2S(this.coBorder); if(this.wBorder>0) e=this.addLR(e,coBS,this.wBorder+'px'); for(var x=this.shadowPadding; x<this.shadowRadius; ++x){ coS=rzC2S(rzBlend(this.coShadow,this.coBgOut,x/this.shadowRadius)); e=this.addLR(e,coS); } return e; }, setEdges:function(ed){ ed=ed?ed.toLowerCase():'lrtb'; this.isL=ed.indexOf('l')>=0; this.isR=ed.indexOf('r')>=0; this.isT=ed.indexOf('t')>=0; this.isB=ed.indexOf('b')>=0; }, /** Calculate the border around e */ calc:function(e){ RUZEE.isXHTML=typeof window.RUZEE.isXHTML != 'undefined' ?window.RUZEE.isXHTML :(/html\:/.test(document.getElementsByTagName('body')[0].nodeName)); if(!e) return; if(e.constructor==Array){ for(var i=0; i<e.length; ++i) this.calc(e[i]); return; } this.inSh=0; // Get the bg image this.imgBgInURL=rzGetStyle(e,'background-image',false,null); if(this.imgBgInURL&&this.imgBgInURL=='none') this.imgBgInURL=null; if(this.imgBgInURL){ this.imgBgInRepeat=rzGetStyle(e,'background-repeat',false,null); } this.coBgIn=rzS2C(rzGetStyle(e,'background-color'),'#ffffff'); this.coBgOut=rzS2C(rzGetStyle(e.parentNode,'background-color'),'#ffffff'); var borderCSS='border-'+(this.isT?'top-':'bottom-'); var bs=rzGetStyle(e,borderCSS+'style',false,'none'); if(bs && bs!='' && bs!='none' && bs!='hidden'){ this.coBorder=rzS2C(rzGetStyle(e,borderCSS+'color',false,'black')); this.wBorder=rzPX2I(rzGetStyle(e,borderCSS+'width',false,'1px')); }else{ this.coBorder=this.coBgIn; this.wBorder=0; } this.coShadow=this.coShadowS=='.fade'?this.coBorder:rzS2C(this.coShadowS); this.cacheID= rzC2S(this.coBgIn)+'.'+rzC2S(this.coBgOut)+'.'+ rzC2S(this.coBorder)+'.'+rzC2S(this.coShadow)+'.'+ this.wBorder+'.'+this.isL+this.isR+this.isT+this.isB+'.'+ this.cornerRadius+'.'+this.shadowRadius+'.'+ this.shadowPadding+'.'+this.shadowShift+'.'+ this.imgBgInURL+'.'+this.imgBgInRepeat; var wr=this.crDiv(); var cwr=this.crDiv(); this.psT=0; this.psB=0; if(this.isT) wr.appendChild(this.crTB(true)); wr.appendChild(this.crLR(cwr)); if(this.isB) wr.appendChild(this.crTB(false)); var psLR=this.shadowRadius-this.shadowPadding+this.wBorder; var psL=this.isL?psLR:0; var psR=this.isR?psLR:0; var isTB=this.isT&&this.isB; if(!isTB)this.inSh=0; var psT=isTB?Math.floor((this.psT+this.psB+this.inSh)/2):this.psT+Math.floor(this.inSh/2); var psB=this.psB+this.psT+this.inSh-psT; var cwrbg=cwr; // lift the inner div up if necessary if(this.inSh!=0){ var up1=this.crDiv(); cwr.appendChild(up1); var up2=this.crDiv(); up1.appendChild(up2); cwr.style.position=up1.style.position='relative'; up1.style.top=up2.style.marginBottom=this.inSh+'px'; if(RUZEE.isIE) cwr.style.height='1%'; cwrbg=up1; cwr=up2; } this.setBgImg(cwrbg,psL,this.psT+this.inSh); cwrbg.style.backgroundColor=rzC2S(this.coBgIn); if(RUZEE.isIE){ e.style.height=cwr.style.height='1%'; // fix IE 3px jog when floated }else{ // work around for other browsers for sebs problem var end=this.crDiv(null,'1px'); end.style.marginBottom='-1px'; e.appendChild(end); cwr.appendChild(end.cloneNode(true)); } if(this.height>0) cwr.style.height=(RUZEE.isStrict?this.height:(this.height-this.psB-this.psT))+'px'; var funcs=[ rzUpdatePad(e,wr,cwr,'top',psT), rzUpdatePad(e,wr,cwr,'bottom',psB), rzUpdatePad(e,wr,cwr,'left',psL), rzUpdatePad(e,wr,cwr,'right',psR)]; RUZEE.Borders.addCalc(function(){ for(var i=0; i<funcs.length; ++i) funcs[i](); e.style.background='transparent'; e.style.backgroundImage='none'; e.appendChild(wr); while (e.childNodes.length>1){ cwr.appendChild(e.removeChild(e.childNodes[0])); } }); }, /** Render the border around e */ render:function(e){ this.calc(e); RUZEE.Borders.renderCalcs(); }, // DEPRECATED STUFF - WILL BE REMOVED IN ONE OF THE NEXT RELEASES! draw:function(e,edges){ this.setEdges(edges?edges.toLowerCase():'lrtb'); if(typeof e=='string'){ if(e.charAt(0)!='.') e='#'+e; e=RUZEE.Borders.cssQuery(e); } this.render(e); }}; // of Border prototype// add an event handler for render() if RUZEE.Events are availableif(RUZEE.Events){ RUZEE.Events.add(window,'domload',function(){ if(RUZEE.Borders.autoRender){ RUZEE.Borders.render(); } });}// internal toolsMath.sqr=function(x){ return x*x;};function rzCC(s){ for(var exp=/-([a-z])/; exp.test(s); s=s.replace(exp,RegExp.$1.toUpperCase())); return s;};function rzGetStyle(e,a,transOk,d){ if(e==null) return d; if(typeof e=='string') e=document.getElementById(e); var v=null; if(document.defaultView){ var cs=document.defaultView.getComputedStyle(e,null); if (!cs && window.getComputedStyle) cs=window.getComputedStyle(e,null); if(cs){ v=cs.getPropertyValue(a); if(!v && cs.getPropertyCSSValue){ v=cs.getPropertyCSSValue(a); if(v) v=v.getStringValue(); } } } if(!v && e.currentStyle){ v=e.currentStyle[rzCC(a)]; if (!v) v=e.currentStyle[a]; } if(!v && e.style) v=e.style[rzCC(a)]; // KHTML bug fix: transparent is #000000 - if you want black, use #010101 in your CSS. // Safari work around: transparent is 'rgba(0, 0, 0, 0)' if(!transOk && v && (v.toLowerCase()=='transparent' || v=='#000000' || v=='rgba(0, 0, 0, 0)')) v=null; return v?v:d?d:e==document.body?d:rzGetStyle(e.parentNode,a);};function rzPX2I(px){ if(!px) return 0; var p=/\s*(\d\d*)px/.exec(px); if(p) return parseInt(p[1]); return 0;}; /** Update the padding of s depending of the setting of d and subtract subPx */function rzUpdatePad(org,newo,newi,l,subPx,isSet){ var padL='padding-'+l; var padCC=rzCC(padL); var marL='margin-'+l; var marCC=rzCC(marL); var borL='border-'+l+'-width'; var borCC=rzCC(borL); var pad=rzGetStyle(org,padL); var bor=rzGetStyle(org,borL); var r=rzPX2I(pad)+rzPX2I(bor); var v=r-subPx; v=(v<0?0:v)+'px'; if(RUZEE.isStrict){ newo.style[marCC]=(-r)+'px'; newi.style[padCC]=v; return function(){ org.style[borCC]='0px'; org.style[padCC]=r+'px'; }; }else{ newi.style[padCC]=v; return function(){ org.style[borCC]=org.style[padCC]='0px'; }; }};function rzS2C(s,d){ if (!s) return d?rzS2C(d):[0,0,0,0]; if (s.charAt(0)=='#') s=s.substr(1,6); s=s.replace(/ /g,'').toLowerCase(); // The CSS 2.1 colors var COLORS = { aqua:'00ffff', black:'000000', blue:'0000ff', fuchsia:'ff00ff', gray:'808080', green:'008000', lime:'00ff00', maroon:'800000', navy:'000080', olive:'808000', orange:'ffa500', purple:'800080', red:'ff0000', silver:'c0c0c0', teal:'008080', white:'ffffff', yellow:'ffff00' }; for (var key in COLORS) if (s==key) s=COLORS[key]; var p=/^rgba\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/.exec(s); if(p) return [parseInt(p[1]),parseInt(p[2]),parseInt(p[3]),parseInt(p[4])]; var p=/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/.exec(s); if(p) return [parseInt(p[1]),parseInt(p[2]),parseInt(p[3]),255]; p=/^(\w{2})(\w{2})(\w{2})$/.exec(s); if(p) return [parseInt(p[1],16),parseInt(p[2],16),parseInt(p[3],16),255]; p=/^(\w{1})(\w{1})(\w{1})$/.exec(s); if(p) return [parseInt(p[1]+p[1],16),parseInt(p[2]+p[2],16),parseInt(p[3]+p[3],16),255]; return d?rzS2C(d):[0,0,0,0];};function rzC2S(c){ if(typeof c=='string') return c; r='0'+c[0].toString(16); g='0'+c[1].toString(16); b='0'+c[2].toString(16); return '#' +r.substring(r.length-2) +g.substring(g.length-2) +b.substring(b.length-2);};function rzBlend(a,b,w){ return Array( Math.round(a[0]+(b[0]-a[0])*w), Math.round(a[1]+(b[1]-a[1])*w), Math.round(a[2]+(b[2]-a[2])*w), Math.round(a[3]+(b[3]-a[3])*w));};// DEPRECATED STUFF - WILL BE REMOVED IN ONE OF THE NEXT RELEASES!function rzCrSimpleBorder(rad){ return new RUZEE.Borders.Border({ borderType:'simple', cornerRadius:rad });};function rzCrShadowBorder(rad,smar,coShadowS){ return new RUZEE.Borders.Border({ borderType:'shadow', cornerRadius:rad, shadowWidth:smar, shadowColor:coShadowS });};function rzCrFadeBorder(rad){ return new RUZEE.Borders.Border({ borderType:'fade', cornerRadius:rad });};function rzCrGlowBorder(rad,gmar,coGlowS){ return new RUZEE.Borders.Border({ borderType:'glow', cornerRadius:rad, glowWidth:gmar, glowColor:coGlowS });};function rzGetElementsByClass(c,n,t) { return RUZEE.getElementsByClass(c,t);};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -