如何使用jQuery使图像独立运行?

时间:2017-04-20 13:37:38

标签: jquery html image

我是编程和学习远程的新手。现在我们正在做jQuery,我试图让我的图像独立地改变不透明度。我已经设法让他们改变MouseOver的不透明度,但它们都在同时改变。我怎样才能在jQuery中区分图像?  我使用MouseOut,animate和Opacity。

请记住我是新手,我的参考资料有限;)

玛尔特

1 个答案:

答案 0 :(得分:0)

假设您正在执行“图像”是您为图像指定的类,

$('.image').mouseOver(function(){
$('.image').hide();
});

尝试使用此

$('.image').mouseOver(function(){
    $(this).hide();
    });