开发者

jQuery - How to brighten an image

开发者 https://www.devze.com 2023-02-14 11:06 出处:网络
Hi In jQuery, we can use the code as below, to make the image darkly. In opposite, how can we bright up an image?

Hi

In jQuery, we can use the code as below, to make the image darkly. In opposite, how can we bright up an image?

开发者_StackOverflow社区
$(this).hover(function() {
    $(this).stop().animate({ opacity: 0.5 }, 500);
},
function() {
    $(this).stop().animate({ opacity: 1.0 }, 500);
});


I'd use Pixastic for this. It has jQuery bindings if you want to take that route.

You can lighten or darken an image like this:

var img = new Image();
img.onload = function() {
    Pixastic.process(img, "lighten", {amount:0.5});
}
document.body.appendChild(img);
img.src = "myimage.jpg";

You could fake this effect by changing the opacity of the image, making sure that the background behind the image is white.

0

精彩评论

暂无评论...
验证码 换一张
取 消