使用css或jquery将一个图像淡入另一个图像

时间:2014-07-17 00:40:59

标签: javascript jquery html css image

我需要能够在悬停时淡入初始图像上方的第二张图像。我需要确保第二张图片最初不可见,直到它渐渐消失。另一个重要的注意事项是这两张图片都不应该在任何时候完全淡出。我尝试了几种方法,例如使用1张图像,2张图像,jquery动画和css过渡。

我读过可以使用jquery动画更改属性吗?如果这是真的,我怎样才能使用jquery动画img中'src'的变化?

$(".image").mouseenter(function() {
        var img = $(this);
        var newSrc = img.attr("data-hover-src");

        img.attr("src",newSrc);
        img.fadeTo('slow', 0.8, function() {
            img.attr("src", newSrc);
        });
        img.fadeTo('slow', 1);
}).mouseleave(function() {
        var img = $(this);
        var newSrc = img.attr("data-regular-src");

        img.fadeTo('slow', 0.8, function() {
            img.attr("src", newSrc);
        });
        img.fadeTo('slow', 1);
});

这就是我目前使用的。这是我得到的最接近的。但是你可以看到图像变化是不可取的。

1 个答案:

答案 0 :(得分:4)

将单个html元素与背景图片一起使用

HTML - 并不比这更简单

<div id="imgHolder"></div>

CSS

#imgHolder {
    width: 200px;
    height: 200px;
    display: block;
    position: relative;
}

/*Initial image*/
 #imgHolder::before {
    content:"";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    background-image:url(http://placehold.it/200x200);
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
    z-index:10;
}

#imgHolder:hover::before {
    opacity:0;
}

#imgHolder::after {
    content:"";
    background: url(http://placehold.it/200x200/FF0000);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

Demo

或者如果您想使用图片代码......

直接偷走:http://css3.bradshawenterprises.com/cfimg/

HTML

<div id="cf">
  <img class="bottom" src="pathetoImg1.jpg" />
  <img class="top" src="pathetoImg2.jpg" />
</div>

CSS

#cf {
  position:relative;
  height:281px;
  width:450px;
  margin:0 auto;
}

#cf img {
  position:absolute;
  left:0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

#cf img.top:hover {
  opacity:0;
}

链接中还有许多其他示例可供使用,但这可以帮助您入门。

最终不透明度

您已经提到过,您不希望初始图像完全消失。要执行此操作,请将opacity:0更改为opacity:0.5或类似内容。您需要尝试使用该值来获得所需的结果。

Demo with final opacity of 0.8

动态图片尺寸

我认为如果只使用CSS,你将会遇到两个图像版本。 HTML是一样的。

CSS

#cf {
    position:relative;
}

#cf img {
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

#cf img.bottom {
    z-index:-1;
    opacity:0;
    position:absolute;
    left:0;
}

#cf:hover img.top {
    opacity:0.8;
}

#cf:hover img.bottom {
    display:block;
    opacity:1;
}

Demo