|
[Ctrl+A 全選 注:如需引入外部Js需刷新才能執行]
safari,chrome與opera打算都用SVG實現。為了減少函數的長度,特意搞了兩個輔助函數。
復制代碼 代碼如下:
var createSVG = function(tag){
return document.createElementNS("http://www.w3.org/2000/svg",tag);
};
var attr= function(node,bag){
for(var i in bag){
if(bag.hasOwnProperty(i))
node.setAttribute(i,bag[i])
}
};
var COSgradient = function(entity,stops,width,height,type){
var svg = createSVG("svg");
attr(svg,{width:width+"px",height:height+"px"})
entity.appendChild(svg);
.
var defs = createSVG("defs");
svg.appendChild(defs);
var linearGradient = createSVG("linearGradient");
defs.appendChild(linearGradient);
attr(linearGradient,{id:"nasami",x1:"0%",y1:"0%"})
if(type){
attr(linearGradient,{x2:"100%",y2:"0%"})
}else{
attr(linearGradient,{x2:"0%",y2:"100%"})
}
for(var i=0,j=0,l=stops.length;i<l;i++,j++){
var offset = stops[i].split(",")[0] + "%",
color = stops[i].split(",")[1],
stop = createSVG("stop");
attr(stop,{offset:offset,"stop-color":color});
linearGradient.appendChild(stop);
}
var rect = createSVG("rect");
svg.appendChild(rect);
attr(rect,{x:"0px",y:"0px",width:width+"px",height:height+"px",fill:"url(#nasami)"});
}
firefox則利用其私有屬性:
復制代碼 代碼如下:
var FFgradient= function(entity,stops,width,height,type){
var cssText = ";background: -moz-linear-gradient("
cssText += type? "top,bottom," :"left,right,";
.
for(var i=0,j=0,l=stops.length;i<l;i++,j++){
var offset = stops[i].split(",")[0] + "%",
color = stops[i].split(",")[1];
cssText += "color-stop("+[offset,color]+"),"
}
cssText = cssText.replace(/,$/,"")+") no-repeat;";
entity.style.cssText = cssText+"width:"+width+"px;height:"+height+"px;"
}
不過今天研磨一下,發現firefox還是支持SVG的線性漸變的,因此糾正我原來的觀點。上面的函數只是作用一種實現手段放在這里,它并沒有整合到我最終的版本中(雖然它比SVG實現短很多。)這樣一來,在老一點版本的firefox中我們也能實現線性漸變了。
下面這個運行框里的漸變效果可在所有主流瀏覽器中正常運作。
[Ctrl+A 全選 注:如需引入外部Js需刷新才能執行]
再把它做成類。扼要說明一下:它的第一個參數為IE,第二個為哈希。哈希中的各參數都為必選的,width,height的單位為px;type為0或者1,0代表垂直,1為水平;color-stop代表漸變體,由一個字符串數組構成,每個字符串都是由數字加逗號加顏色值組成,數字表代偏移量,單位為%,顏色值可以是red,green等名詞,也可以是六位或三位的哈希值。漸變體至少要有一個。
復制代碼 代碼如下:
new Gradient("gradient",{width:800,height:100,type:0,"color-stop":["0,red",
3."16,orange","32,yellow","48,green","64,blue","80,indigo","100,violet"]})
[Ctrl+A 全選 注:如需引入外部Js需刷新才能執行]
JavaScript技術:javascript 線性漸變二,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。