タグで画像を不飽和化するために非常に多くのプラグインを見ました。CSSを使ってdivの背景画像を彩度を落とす方法は?
しかし、私は(、要素(DIV)の背景として使用されている画像を背景画像を不飽和化するための任意のものを見つけることができませんでした。
を出してホバー上の背景画像を不飽和化する方法はあります2つの背景 (IEイメージスプライト1はB & Wで、他のカラーである)
を使用して、私はこの使用して画像のスプライトのような何かを行うことができます。
// 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();
});
をしかし、私はこれをしたいいけない。私はDにしたいです飛行中の背景画像を浮かせます。 助けてください。
私も興味があります、あなたは進歩しましたか? – bluantinoo