我在这个网站的媒体框上有一个随机的颜色覆盖。
http://www.reportageborsen.se/reportageborsen/wordpress/
我从 stackoverflow 的伙伴那里得到了一些非常好的帮助,最终得到了这个脚本:
var getRandomInRange = function(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
};
$('.media-box').each(function() {
var mediaBox = $(this);
var mask = mediaBox.find('.mask');
var hue = 'rgb(' + getRandomInRange(100, 255) + ',' + getRandomInRange(100, 255) + ',' + getRandomInRange(100, 255) + ')';
mask.css({
backgroundColor : hue,
opacity : 0.7
});
mediaBox.hover(function() {
mask.stop(true, true).fadeIn();
}, function() {
mask.stop(true, true).fadeOut();
});
});
小提琴链接:http: //jsfiddle.net/b5ZPq/3/
然而,我希望有更多更亮的颜色和更少的灰色。我知道可以使用 HSL 值而不是 RGB 值来完成。
所以我尝试将 css 背景 rgb 值转换为 hsl 值并转换脚本,但我没有让它工作。
var getRandomInRange = function(min, max) {
return Math.floor(Math.random() * (max - min + 1), 10) + min;
};
$('.media-box').each(function() {
var mediaBox = $(this);
var mask = mediaBox.find('.mask');
var hue = 'hsl(' + getRandomInRange(0, 360) + ',' + getRandomInRange(70, 100) + '%' + getRandomInRange(45, 55) + '%)';
mask.css({
backgroundColor: hue,
opacity: 0.7
});
mediaBox.hover(function() {
mask.stop(true, true).fadeIn();
}, function() {
mask.stop(true, true).fadeOut();
});
});
http://jsfiddle.net/zolana/Kc9U4/5/ (小提琴,更新,工作:http: //jsfiddle.net/zolana/Kc9U4/9/ )
(我不是在寻找将所有 RGB 值转换为 HSL 值的脚本(我知道有用于此目的的脚本),而是为这个特定任务提供可靠的脚本。)