我有一组图像在加载时必须去饱和,在悬停时必须有颜色。我已经尝试过了,但是悬停不起作用,但它确实会降低负载的饱和度:
$(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");
        });
 });
我在这里看到了其他一些帖子,但似乎都没有。
我究竟做错了什么?