我在标签。
但是我没有找到任何东西可以降低背景图像的饱和度,(用作元素(div)背景的图像。
有没有办法在不使用 2 个背景的情况下使悬停时的背景图像去饱和(即图像精灵一个是黑白,另一个是彩色)
我可以使用 Image Sprites 来做这样的事情。
// Initially color Image
$(<element>).mouseover(function(e){
jQuery(this).children(":first").stop().animate(
{
'background-position': <some coordinates>
// Coordinates of b&w Image
},
100
);
e.stopPropagation();
})
.mouseout(function(e){
jQuery(this).children(":first").stop().animate(
{
'background-position': <some coordinates>
// Coordinates of color Image
},
100,
settings.easingType
);
e.stopPropagation();
});
但我不想要这个。我想要动态去饱和背景图像。请帮忙。