JavaScript 顏色梯度和漸變效果第2/3頁(yè)
更新時(shí)間:2009年03月15日 21:15:07 作者:
程序ColorGrads的作用是通過(guò)StartColor和EndColor生成顏色梯度集合。
【ColorTrans顏色漸變】
有了顏色梯度集合,只需要設(shè)個(gè)定時(shí)器把集合的值依次顯示就是一個(gè)漸變效果了。
這個(gè)漸變一般是分兩個(gè)步驟,分別是(FadeIn)和漸出(FadeOut)。
原理就是通過(guò)改變_index集合索引,漸入時(shí)逐漸變大,漸出時(shí)逐漸變?。?
復(fù)制代碼 代碼如下:
//顏色漸入
FadeIn: function() {
this.Stop(); this._index++; this.SetColor();
if(this._index < this._colors.length - 1){
this._timer = setTimeout(Bind(this, this.FadeIn), this.Speed);
}
},
//顏色漸出
FadeOut: function() {
this.Stop(); this._index--; this.SetColor();
if(this._index > 0){
this._timer = setTimeout(Bind(this, this.FadeOut), this.Speed);
}
},
在SetColor設(shè)置樣式程序中,通過(guò)CssColor來(lái)設(shè)置要修改的樣式屬性,例如字體顏色是"color",背景色是"backgroundColor":
復(fù)制代碼 代碼如下:
var color = this._colors[Math.min(Math.max(0, this._index), this._colors.length - 1)];
this._obj.style[this.CssColor] = "rgb(" + color[0] + "," + color[1] + "," + color[2] + ")";
由于顏色集合是根據(jù)開(kāi)始顏色、結(jié)束顏色和步數(shù)生成的,所以如果要修改這些屬性必須重新生成過(guò)集合。
Reset程序就是用來(lái)修改這些屬性并重新生成集合的,集合重新生成后索引也要設(shè)回0:
復(fù)制代碼 代碼如下:
//修改顏色后必須重新獲取顏色集合
color = Extend({ StartColor: this._startColor, EndColor: this._endColor, Step: this._step }, color || {});
//設(shè)置屬性
this._grads.StartColor = this._startColor = color.StartColor;
this._grads.EndColor = this._endColor = color.EndColor;
this._grads.Step = this._step = color.Step;
//獲取顏色集合
this._colors = this._grads.Create();
this._index = 0;
使用技巧
在顏色漸變菜單中,并沒(méi)有使用鏈接標(biāo)簽a,原因是a的偽類(lèi)的顏色并不能直接用js來(lái)修改(除非改class)。
暫時(shí)沒(méi)想到很好的方法,只好用onclick跳轉(zhuǎn)代替了。
在測(cè)試過(guò)程中還發(fā)現(xiàn)一個(gè)關(guān)于數(shù)組的問(wèn)題,在ie和ff運(yùn)行alert([,,].length)會(huì)分別顯示3和2。
最后一個(gè)元素不寫(xiě)的話ff就會(huì)忽略這個(gè)元素,只要寫(xiě)的話就不會(huì)忽略即使是undefined和null,看了下文檔也找到原因。
所以這個(gè)情況還是插一個(gè)東西進(jìn)去,覺(jué)得不好看就new Array好了。
測(cè)試中還發(fā)現(xiàn)chrome(1.0.154.48)的map一個(gè)問(wèn)題,map是js1.6的Array的方法,ff和chrome都支持(具體看這里)。
在ff中[,,1].map(function(){return 0})返回的是[0,0,0],但chrome卻返回[,,0]。
即在chrome中如果元素是空(不包括null和undefined)的話就一律返回空,用new Array來(lái)創(chuàng)建也一樣。
感覺(jué)這樣不太合理,應(yīng)該以后會(huì)改進(jìn)吧。
使用說(shuō)明
復(fù)制代碼 代碼如下:
ColorGrads只有3個(gè)屬性設(shè)置:
StartColor: "#fff",//開(kāi)始顏色
EndColor: "#000",//結(jié)束顏色
Step: 20//漸變級(jí)數(shù)
設(shè)置好屬性后用Create生成集合就行了。
ColorTrans只要一個(gè)參數(shù),要實(shí)現(xiàn)漸變的對(duì)象,可設(shè)置以下屬性:
StartColor: "",//開(kāi)始顏色
EndColor: "#000",//結(jié)束顏色
Step: 20,//漸變級(jí)數(shù)
Speed: 20,//漸變速度
CssColor: "color"http://設(shè)置屬性(Scripting屬性)
如果不設(shè)置StartColor會(huì)自動(dòng)使用CurrentStyle獲取的樣式值。
其中StartColor、EndColor和Step在實(shí)例化后要重新設(shè)置的話需要用Reset來(lái)設(shè)置。
程序代碼
ColorGrads部分:
復(fù)制代碼 代碼如下:
var ColorGrads = function(options){
this.SetOptions(options);
this.StartColor = this.options.StartColor;
this.EndColor = this.options.EndColor;
this.Step = Math.abs(this.options.Step);
};
ColorGrads.prototype = {
//設(shè)置默認(rèn)屬性
SetOptions: function(options) {
this.options = {//默認(rèn)值
StartColor: "#fff",//開(kāi)始顏色
EndColor: "#000",//結(jié)束顏色
Step: 20//漸變級(jí)數(shù)
};
Extend(this.options, options || {});
},
//獲取漸變顏色集合
Create: function() {
var colors = [],
startColor = this.GetColor(this.StartColor),
endColor = this.GetColor(this.EndColor),
stepR = (endColor[0] - startColor[0]) / this.Step,
stepG = (endColor[1] - startColor[1]) / this.Step,
stepB = (endColor[2] - startColor[2]) / this.Step;
//生成顏色集合
for(var i = 0, n = this.Step, r = startColor[0], g = startColor[1], b = startColor[2]; i < n; i++){
colors.push([r, g, b]); r += stepR; g += stepG; b += stepB;
}
colors.push(endColor);
//修正顏色值
return Map(colors, function(x){ return Map(x, function(x){
return Math.min(Math.max(0, Math.floor(x)), 255);
});});
},
//獲取顏色數(shù)據(jù)
GetColor: function(color) {
if(/^#[0-9a-f]{6}$/i.test(color))
{//#rrggbb
return Map([color.substr(1, 2), color.substr(3, 2), color.substr(5, 2)],
function(x){ return parseInt(x, 16); }
)
}
else if(/^#[0-9a-f]{3}$/i.test(color))
{//#rgb
return Map([color.substr(1, 1), color.substr(2, 1), color.substr(3, 1)],
function(x){ return parseInt(x + x, 16); }
)
}
else if(/^rgb(.*)$/i.test(color))
{//rgb(n,n,n) or rgb(n%,n%,n%)
return Map(color.match(/\d+(\.\d+)?\%?/g),
function(x){ return parseInt(x.indexOf("%") > 0 ? parseFloat(x, 10) * 2.55 : x, 10); }
)
}
else
{//color
var mapping = {"red":"#FF0000"};//略
color = mapping[color.toLowerCase()];
if(color){
return Map([color.substr(1, 2), color.substr(3, 2), color.substr(5, 2)],
function(x){ return parseInt(x, 16); }
)
}
}
}
};
您可能感興趣的文章:
- JS Tween 顏色漸變
- 利用遞增的數(shù)字返回循環(huán)漸變的顏色的js代碼
- js+HTML5實(shí)現(xiàn)canvas多種顏色漸變效果的方法
- js實(shí)現(xiàn)按鈕顏色漸變動(dòng)畫(huà)效果
- javascript實(shí)現(xiàn)顏色漸變的方法
- JS實(shí)現(xiàn)的顏色實(shí)時(shí)漸變效果完整實(shí)例
- 神奇!js+CSS+DIV實(shí)現(xiàn)文字顏色漸變效果
- 漂亮! js實(shí)現(xiàn)顏色漸變效果
- Javascript 顏色漸變效果的實(shí)現(xiàn)代碼
- js實(shí)現(xiàn)顏色階梯漸變效果(Gradient算法)
相關(guān)文章
用JavaScript調(diào)用WebService的示例
JavaScript用htc實(shí)現(xiàn)WebService的調(diào)用2008-04-04js中Image對(duì)象以及對(duì)其預(yù)加載處理示例
現(xiàn)在的網(wǎng)頁(yè)中經(jīng)常會(huì)有一些圖像連接,當(dāng)鼠標(biāo)指向它的時(shí)候,圖像換成另外一幅圖像,它們都是先預(yù)讀圖像的,下面也有個(gè)不錯(cuò)的實(shí)例,感興趣的朋友可以參考下2013-11-11微信小程序國(guó)際化探索實(shí)現(xiàn)(附源碼地址)
這篇文章主要介紹了微信小程序國(guó)際化探索實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2020-05-05JavaScript canvas實(shí)現(xiàn)七彩太陽(yáng)光暈效果
這篇文章主要為大家詳細(xì)介紹了JavaScript canvas實(shí)現(xiàn)七彩太陽(yáng)光暈效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-05-05JS 中document.write()的用法和清空的原因淺析
這篇文章主要介紹了JS 中document.write()的用法和清空的原因淺析,需要的朋友可以參考下2017-12-12JS實(shí)現(xiàn)漂亮的時(shí)間選擇框效果
這篇文章主要介紹了JS實(shí)現(xiàn)漂亮的時(shí)間選擇框效果,結(jié)合實(shí)例形式分析了javascript時(shí)間選擇框插件的實(shí)現(xiàn)與使用方法,需要的朋友可以參考下2016-08-08js實(shí)現(xiàn)跨域的幾種方法匯總(圖片ping、JSONP和CORS)
平時(shí)用慣了jQuery.ajax之類(lèi)的方法,卻時(shí)常忽略了它背后的實(shí)現(xiàn),本文是學(xué)習(xí)了AJAX基礎(chǔ)及幾種跨域解決方案之后的一些收獲。2015-10-1011種JavaScript前端數(shù)據(jù)去重方式總結(jié)
這篇文章主要為大家總結(jié)了JavaScript去重的11種方式,各有優(yōu)缺點(diǎn),文中的示例代碼講解詳細(xì),具有一定的學(xué)習(xí)價(jià)值,需要的可以根據(jù)需求合理使用2023-06-06