以下代碼片段完美適用於所有瀏覽器,IE瀏覽器。照常。 這是需要做的:jQuery:HEX到RGB計算瀏覽器之間的不同?
- 當鼠標懸停在鏈接,獲取 鏈接的顏色。
- 獲取該顏色的RGB值, 視爲基礎CSS始終將 設置爲HEX值;
- 使用新的RGB值,並做了計算,以確定顏色
- 動畫的較淡,在經過一段0.5秒
- 新較淡當移動鼠標離開,還原 顏色與原價值
正如我所說的,到目前爲止代碼工作絕對好,除了在IE瀏覽器。任何一個擁有全新眼睛的人(還有一個完整的髮際線)都可以看看這個嗎?它可以做不同?
function getRGB(color) {
// Function used to determine the RGB colour value that was passed as HEX
var result;
// Look for rgb(num,num,num)
if (result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color)) return [parseInt(result[1]), parseInt(result[2]), parseInt(result[3])];
// Look for rgb(num%,num%,num%)
if (result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color)) return [parseFloat(result[1]) * 2.55, parseFloat(result[2]) * 2.55, parseFloat(result[3]) * 2.55];
// Look for #a0b1c2
if (result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color)) return [parseInt(result[1], 16), parseInt(result[2], 16), parseInt(result[3], 16)];
// Look for #fff
if (result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color)) return [parseInt(result[1] + result[1], 16), parseInt(result[2] + result[2], 16), parseInt(result[3] + result[3], 16)];
}
var $oldColour;
// Get all the links I want to target
$('a').not('aside.meta a.notes_link, aside.meta ul li a, section.social_media a, footer a').hover(function() {
//code when hover over
//set the old colour as a variable so we can animate to that value when hovering away
$oldColour = $(this).css('color');
//run the getRGB function to get RGB value of the link we're hovering over
var rgb = getRGB($(this).css('color'));
for (var i = 0; i < rgb.length; i++)
//for each of the 3 HEX values, determine if the value + an increment of 30 (for a lighter colour) is lighter than the max (255)
//if it is, use the HEX value plus the increment, else use the max value
rgb[i] = Math.min(rgb[i] + 30, 255);
//join the new three new hex pairs together to form a sinle RGB statement
var newColor = 'rgb(' + rgb[0] + ',' + rgb[1] + ',' + rgb[2] + ')';
//animate the text link color to the new color.
$(this).animate({'color': newColor}, 500);
}, function() {
//code when hovering away
//animate the colour back using the old colour determined above
$(this).animate({'color': $oldColour}, 500);
});
我期待着聽到你的上師。
@icyrock - 感謝您的輸入,我會嘗試setTimeou t idea ...至於console.log的想法,console.logged我自己死:非IE瀏覽器看到$ oldColour作爲RGB值,而IE則認爲它是HEX。第一次懸停後,IE會將其視爲RGB值。嘆。 – 2010-11-24 00:39:57