読み込み時に彩度を下げ、ホバー時に色を付ける必要がある一連の画像があります。私はこれを試しましたが、ホバーは機能しませんが、ロード時の彩度の低下は機能します:
$(window).load(function () {
$(".box img").pixastic("desaturate");
$(".box img").mouseenter(function (e) {
var self = $(this);
Pixastic.revert(self); // make it colour
});
$(".box img").mouseleave(function (e) {
// make it black n white again
$(this).pixastic("desaturate");
});
});
ここで他の投稿を見てきましたが、どれも機能していないようです。
私は何を間違っていますか?