このサイトの写真にランダムな色を重ねようとして困っています。 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();
});
何らかの方法でそれらをまとめることは可能ですか?
よろしくお願いします
フォルテス