javascript線性漸層一_javascript技巧

來源:互聯網
上載者:User
作為新力軍,蘋果為我們帶來了canvas標籤。canvas首次在Mac OS X中的Dashboard中被引入,之後又被蘋果公司的Safari瀏覽器所支援,緊接著就成為HTML5的標準,被IE核心以外的標準瀏覽器所支援。蘋果做的好事還不止這一樁,它認為SVG太笨重了,於是它把SVG裡的濾鏡標籤統統CSS屬性化(SVG的濾鏡比IE濾鏡還多呢,而且功能更全面)。firefox一看不對勁,連忙自己也搞一套私人屬性,只不過是首碼由-webkit-改為-moz-罷了。opera的反應比較獃滯,應該說私底下非常不滿,因為opera的CTO就是CSS的發明者Hakon Wium Lie,不喜歡別人對自己的東西啥搞。因此我實現線性漸層就困難重重了,IE需要用IE濾鏡,firefox在動態建立SVG存在一些問題,需要用其-moz-首碼的CSS私人屬性,safari與chrome需要用-webkit-首碼的CSS私人屬性,opera需要用SVG。現在一個個突破吧。

IE要用到DXImageTransform.Microsoft.Gradient濾鏡(最後那個Gradient的首字母大寫小寫無所謂)。
屬性 說明
enabled 是否啟用濾鏡,預設為true
gradientType 是垂直漸層還是水平漸層,預設是0(垂直漸層),1為水平漸層
startColorStr 起始顏色,能接受一個8位hex顏色值,從#FF000000到#FFFFFFFF,預設是藍色#FF0000F;或者使用red,green等顏色值F
endColorStr 結束顏色,能接受一個8位hex顏色值,從#FF000000到#FFFFFFFF,預設是黑色#FF000000
startColor 作用同startColorStr,接受一個0到4294967295整體顏色值,沒有預設值
endColor 作用同endColorStr,接受一個0到4294967295整體顏色值,沒有預設值
<!doctype html> <title>javascript線性漸層 by 司徒正美</title> <meta charset="utf-8"/> <meta name="keywords" content="javascript線性漸層 by 司徒正美" /> <meta name="description" content="javascript線性漸層 by 司徒正美" /> <style type="text/css"> #gradient{ height:120px; color:navy; filter:progid:DXImageTransform.Microsoft.gradient(enabled='false',gradientType=1,startColorstr=#ffff0000, endColorstr=#00ffffff); } </style> <script type="text/javascript"> window.onload = function(){ var div = document.getElementById("gradient"), button = document.getElementById("toggle"), filter = div.filters[0]; //因為它只應用到一個濾鏡。由此也可見,filters是作為元素對象的一個屬性而存在, //此屬性是一個集合,裡面是靜態CSS定義過的濾鏡與動態添加過的濾鏡。 //如果不止一個濾鏡,我就要使用如下方式取得相應的濾鏡對象 //filter = div.filters["DXImageTransform.Microsoft.Gradient"] filter = div.filters.item("DXImageTransform.Microsoft.Gradient") button.onclick = function(){ if(filter.enabled){ filter.enabled = "false"; div.style.color = "navy"; button.innerHTML = "啟用濾鏡"; }else{ filter.enabled = "true"; div.style.color = "#000"; button.innerHTML = "禁用濾鏡"; } } } </script> <div id="gradient">javascript線性漸層 by 司徒正美</div> <button type="button" id="toggle">啟用IE濾鏡</button>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]

接著講述一下SVG線性漸層的實現,因為相關的CSS私人屬性都衍生於此。由於沒有什麼空間支援上傳SVG,我只能動態產生SVG了。對我來說,能動態實現最好不過了,起碼能減少請求數,少寫許多大於符號小於符號……下面是靜態實現,至於怎樣加入html自己google吧。

linearGradient 有x1,x2,y1,y2等幾個屬性,可以協助我們實現水平漸層或垂直漸層。我們大可以把x1,x2,y2,y2當成色彩坡形體的兩個點的座標就是。

當y1等於y2,x1不等於x2,實現水平漸層。
當x1等於x2,y1不等於y2,實現垂直漸層。
當y1不等於y2,x1不等於x2,實現角度漸層。
複製代碼 代碼如下:

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="800px" height="400px" version="1.1"
xmlns="http://www.w3.org/2000/svg">
<desc>javascript線性漸層(水平) by 司徒正美</desc>
<defs>
<linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="20%" stop-color="rgb(255,255,0)" stop-opacity="1"/>
<stop offset="80%" stop-color="rgb(255,0,0)" stop-opacity="1"/>
</linearGradient>
</defs>
<ellipse cx="200" cy="190" rx="85" ry="55" fill="url(#gradient)"/>
</svg>

<!doctype html> <title>svg by 司徒正美</title> <meta charset="utf-8"/> <meta name="keywords" content="javascript動態建立SVG" /> <meta name="description" content="javascript動態建立SVG" /> <base href="http://www.jb51.net"> <script type="text/javascript"> (function(){ if(!window.svg){ window.svg = {}; } var svg = window.svg = { create : function(name){ this.node = document.createElementNS("http://www.w3.org/2000/svg", name); return this; }, appendTo: function(parent){ if(typeof this.node !== "undefined" && parent.nodeType == 1){ parent.appendChild(this.node); } return this; }, attr : function(bag){ for(var i in bag){ if(bag.hasOwnProperty(i)){ this.node.setAttributeNS(null,i,bag[i]) } } return this; }, html : function(text){ if(text.nodeType == 3){ this.node.appendChild(document.createTextNode(text)); } return this; } } })() window.onload = function(){ var root = svg.create("svg").attr({width:"800px",height:"400px"}).appendTo(document.body).node; svg.create("desc").html("javascript線性漸層 by 司徒正美").appendTo(root); var defs = svg.create("defs").appendTo(root).node; //定義線性漸層 var linearGradient = svg.create("linearGradient").attr({id:"gradient",x1:"0%", y1:"0%",x2:"100%",y2:"0%"}).appendTo(defs).node; svg.create("stop").attr({offset:"20%","stop-color":"red"}).appendTo(linearGradient) svg.create("stop").attr({offset:"80%","stop-color":"yellow"}).appendTo(linearGradient) svg.create("ellipse").attr({cx:"200",cy:"190",rx:"85", ry:"55",fill:"url(#gradient)" }).appendTo(root) } </script> <h3>javascript線性漸層(水平) by 司徒正美</h3>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]

動態實現,不過在Firefox中啞火了,可見Firefox在SVG上也怠工了。
複製代碼 代碼如下:

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="800px" height="400px" version="1.1"
xmlns="http://www.w3.org/2000/svg">
<desc>javascript線性漸層(垂直) by 司徒正美</desc>
<defs>
<linearGradient id="gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#008000" stop-opacity="1"/>
<stop offset="80%" stop-color="#a9ea00" stop-opacity="0"/>
</linearGradient>
</defs>
<polygon id = "s1" points = "60,0 120,0 180,60 180,120 120,180 60,180 0,120 0,60" fill="url(#gradient)"/>
</svg>

<!doctype html> <title>svg by 司徒正美</title> <meta charset="utf-8"/> <meta name="keywords" content="javascript動態建立SVG" /> <meta name="description" content="javascript動態建立SVG" /> <base href="http://www.jb51.net"> <script type="text/javascript"> (function(){ if(!window.svg){ window.svg = {}; } var svg = window.svg = { create : function(name){ this.node = document.createElementNS("http://www.w3.org/2000/svg", name); return this; }, appendTo: function(parent){ if(typeof this.node !== "undefined" && parent.nodeType == 1){ parent.appendChild(this.node); } return this; }, attr : function(bag){ for(var i in bag){ if(bag.hasOwnProperty(i)){ this.node.setAttributeNS(null,i,bag[i]) } } return this; }, html : function(text){ if(text.nodeType == 3){ this.node.appendChild(document.createTextNode(text)); } return this; } } })() window.onload = function(){ var root = svg.create("svg").attr({width:"800px",height:"400px"}).appendTo(document.body).node; svg.create("desc").html("javascript線性漸層 by 司徒正美").appendTo(root); var defs = svg.create("defs").appendTo(root).node; //定義線性漸層 var linearGradient = svg.create("linearGradient").attr({id:"gradient",x1:"0%", y1:"0%",x2:"0%",y2:"100%"}).appendTo(defs).node; svg.create("stop").attr({offset:"0%","stop-color":"#008000"}).appendTo(linearGradient) svg.create("stop").attr({offset:"80%","stop-color":"#a9ea00"}).appendTo(linearGradient) svg.create("polygon").attr({points:"60,0 120,0 180,60 180,120 120,180 60,180 0,120 0,60",fill:"url(#gradient)"}).appendTo(root) } </script> <h3>javascript線性漸層(垂直) by 司徒正美</h3>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]

複製代碼 代碼如下:

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="800px" height="400px"
xmlns="http://www.w3.org/2000/svg" version="1.1">
<desc>javascript線性漸層(角度) by 司徒正美</desc>
<defs>
<linearGradient id="content" x1="0%" y1="0%" x2="100%" y2="100%">
<stop stop-color="black" offset="0%"/>
<stop stop-color="teal" offset="50%"/>
<stop stop-color="white" offset="100%"/>
</linearGradient>
</defs>
<rect x="10px" y="10px" width="350" height="350" fill="url(#content)"/>
</svg>

<!doctype html> <title>svg by 司徒正美</title> <meta charset="utf-8"/> <meta name="keywords" content="javascript動態建立SVG" /> <meta name="description" content="javascript動態建立SVG" /> <base href="http://www.jb51.net"> <script type="text/javascript"> (function(){ if(!window.svg){ window.svg={}; } var svg=window.svg={ create : function(name){ this.node=document.createElementNS("http://www.w3.org/2000/svg", name); return this; }, appendTo: function(parent){ if(typeof this.node !== "undefined" && parent.nodeType == 1){ parent.appendChild(this.node); } return this; }, attr : function(bag){ for(var i in bag){ if(bag.hasOwnProperty(i)){ this.node.setAttributeNS(null,i,bag[i]) } } return this; }, html : function(text){ if(text.nodeType == 3){ this.node.appendChild(document.createTextNode(text)); } return this; } } })() window.onload=function(){ var root= svg.create("svg").attr({width:"800px",height:"400px"}).appendTo(document.body).node; svg.create("desc").html("javascript線性漸層 by 司徒正美").appendTo(root); var defs= svg.create("defs").appendTo(root).node; //定義線性漸層 var linearGradient= svg.create("linearGradient").attr({id:"centent",x1:"0%", y1:"0%",x2:"100%",y2:"100%"}).appendTo(defs).node; svg.create("stop").attr({offset:"0%","stop-color":"black"}).appendTo(linearGradient) svg.create("stop").attr({offset:"50%","stop-color":"teal"}).appendTo(linearGradient) svg.create("stop").attr({offset:"100%","stop-color":"white"}).appendTo(linearGradient) svg.create("rect").attr({x:"10px",y:"10px",width:"300px",height:"300px",fill:"url(#centent)"}).appendTo(root); } </script> <h3>javascript線性漸層(角度) by 司徒正美</h3>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]

接著說說-moz-linear-gradient,Firefox的CSS私人屬性,隸屬於background-image,不過它也略寫成background。文法為:
-moz-linear-gradient( <POINT>, <POINT> [, <STOP>]* )
我們可以設定這兩個點的值坪決定其是水平還是垂直,如
/*水平*/
-moz-linear-gradient(left, right [, <STOP>]* )1.
/*垂直*/
-moz-linear-gradient(top, bottom [, <STOP>]* )
至於後面的部分,看看下面的運行框就足夠了。不過這要用最新版的firefox(3.6a1)才能見效果。
<!doctype html> <title>javascript線性漸層 by 司徒正美</title> <meta charset="utf-8"/> <meta name="keywords" content="javascript線性漸層 by 司徒正美" /> <meta name="description" content="javascript線性漸層 by 司徒正美" /> <base href="http://www.jb51.net"> <style type="text/css"> .vertical { background-image: -moz-linear-gradient(top, bottom, from(red),/*起始顏色*/ color-stop(16%, orange),/*到高的16%的位置時漸層為橙色*/ color-stop(32%, yellow),/*到高的32%的位置時漸層為黃色*/ color-stop(48%, green),/*到高的48%的位置時漸層為綠色*/ color-stop(64%, blue),/*到高的64%的位置時漸層為藍色*/ color-stop(80%, indigo),/*到高的80%的位置時漸層為紫藍色*/ to(violet));/*結束顏色*/ height:100px; } .horizontal { background-image: -moz-linear-gradient(left, right, from(red),/*起始顏色*/ color-stop(16%, orange),/*到高的16%的位置時漸層為橙色*/ color-stop(32%, yellow),/*到高的32%的位置時漸層為黃色*/ color-stop(48%, green),/*到高的48%的位置時漸層為綠色*/ color-stop(64%, blue),/*到高的64%的位置時漸層為藍色*/ color-stop(80%, indigo),/*到高的80%的位置時漸層為紫藍色*/ to(violet));/*結束顏色*/ height:100px; } .angular { background-image: -moz-linear-gradient(0px 0px, 100px 100px, from(red),/*起始顏色*/ color-stop(16%, orange),/*到高的16%的位置時漸層為橙色*/ color-stop(32%, yellow),/*到高的32%的位置時漸層為黃色*/ color-stop(48%, green),/*到高的48%的位置時漸層為綠色*/ color-stop(64%, blue),/*到高的64%的位置時漸層為藍色*/ color-stop(80%, indigo),/*到高的80%的位置時漸層為紫藍色*/ to(violet));/*結束顏色*/ height:100px; } </style> <h3 class="vertical ">記得要用最新版本的firefox運行。</h3> <div class="horizontal">上面是垂直漸層,這裡是水平漸層。</div> <div class="angular">角度漸層</div>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]

接著下來看看-webkit-gradient這個CSS屬性,用法來-moz-linear-gradient差不多,但有三點不同。第一個參數用來決定是線性漸層與放射性漸層,這裡寫linear就可以了。兩個點值,一定要為left,right,top與bottom的兩個,而且怎樣組合也實現不了角度漸層。三是color-stop的位移量一定為小數。
<!doctype html> <title>javascript線性漸層 by 司徒正美</title> <meta charset="utf-8"/> <meta name="keywords" content="javascript線性漸層 by 司徒正美" /> <meta name="description" content="javascript線性漸層 by 司徒正美" /> <base href="http://www.jb51.net"> <style type="text/css"> .vertical { background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, yellow), color-stop(0.5, orange), color-stop(1.0, red)) no-repeat; height:100px; } .horizontal { background: -webkit-gradient(linear, left top, right top, from(yellow), color-stop(16%, orange),/*到高的16%的位置時漸層為橙色*/ color-stop(32%, pink),/*到高的32%的位置時漸層為粉色*/ color-stop(48%, green),/*到高的48%的位置時漸層為綠色*/ color-stop(64%, blue),/*到高的64%的位置時漸層為藍色*/ color-stop(80%, indigo),/*到高的80%的位置時漸層為紫藍色*/ to(red)) no-repeat; height:100px; } </style> <h3 class="vertical ">必須在safari與chrome才能運行。</h3> <div class="horizontal">上面是垂直漸層,這裡是水平漸層。我們可以用from與top減少首尾兩個color-stop。</div>
[Ctrl+A 全選 注:如需引入外部Js需重新整理才能執行]

結語,這就是多種瀏覽器共存的帶來的和諧局面,我寧願IE實現完全壟斷了。下一部分才是征途的開始,光IE處理濾鏡失效的問題,就要動用table這個上古神器了。SVG,在上面的運框中,你們看到了,我還特意搞了一個小工具來建立這些特殊的對象……
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.