我一直试图在这个网站上的图片上随机叠加颜色。 http://www.reportageborsen.se/reportageborsen/wordpress
我试图结合的 Javascript 是:
$(function() {
$('.media-box .mask').each(function() {
var hue = 'rgb(' + (Math.floor((256 - 199) * Math.random()) + 200) + ',' + (Math.floor((256 - 199) * Math.random()) + 200) + ',' + (Math.floor((256 - 199) * Math.random()) + 200) + ')';
$(this).css("background-color", hue);
});
});
///和///
$('.media-box').hover(function() {
$(this).find('.mask').stop(true, true).fadeIn();
}, function() {
$(this).find('.mask').stop(true, true).fadeOut();
});
是否有可能以某种方式将它们组合在一起?
最好的祝福
长处