Jquery Rollover褪色

时间:2013-02-26 10:36:43

标签: javascript jquery fadein fadeout rollover-effect

我想知道是否有人可以帮我这个代码?我想用fadeIn / fadeOut添加不透明度过渡。我已经单独尝试了,但我是jQuery的初学者所以我没有成功:(

非常感谢!

代码

Jquery的

<script type="text/javascript">
    $(document).ready(function () {
        $('img.article01').hover(function () {
            this.src = 'imgColor.jpg';
        }, function () {
            this.src = 'imgGray.jpg';
        });
    });    
</script>

的CSS

img {
    max-width: 100%; /*very important*/
}

.figure {
    width: 100%;
}

.thumbTitle {
    position: absolute;
    font-size: 1em;
    padding-left: 25px;
    color: #fff;
}

HTML

<article class="padding">

    <h2 class="thumbTitle">Project 01</h2>

    <div class="figure">
        <a href="projet01.html" class="thumb">
            <img src="imgGray.jpg" class="article01" />
        </a> 
    </div>

</article>

1 个答案:

答案 0 :(得分:0)

HTML:

<div id="mainDiv">Hover here
    <div id="div1" style="width:80px;height:80px;display:none;background-color:red;"></div>
</div>

脚本:

$(document).ready(function(){
  $("#mainDiv").hover(function(){
    if($("#div1").css("display") == "none"){
       $("#div1").fadeIn(2000);
    }else{
       $("#div1").fadeOut(2000);
    }
  });
});

这将切换fadeInfadeOut效果。希望这可以帮助。工作fiddle here