0

我正在使用响应式网页设计,我想将一些图像滑入页面。我尝试了一些插件,但插件的问题是它使用 width 和 height 属性并且还分配position: absolute. 所以我想src用js自己改变图像的效果,效果很好,但是我可以给它一些过渡效果吗?

演示小提琴

我所做的是:

var i = 0;
var total = 2;
window.setInterval(function() {
    show_hide();
}, 1000);

function show_hide() {
    var img = $('.image-holder img, .image-holder2 img');
    //alert(img.length);
    if (i % 2 == 0) {
        img[0].src = 'http://digimind.com/blog/wp-content/uploads/2012/02/number2c.png';
        img[1].src = 'http://digimind.com/blog/wp-content/uploads/2012/02/number2c.png';
        i = 0;
    }
    else {
        img[0].src = 'http://healthystartups.com/storage/600px-MA_Route_1.png?__SQUARESPACE_CACHEVERSION=1319542839834';
        img[1].src = 'http://healthystartups.com/storage/600px-MA_Route_1.png?__SQUARESPACE_CACHEVERSION=1319542839834';
    }
    i++;
}

我的HTML如下:

<div  class="image-holder" >
    <img src="http://healthystartups.com/storage/600px-MA_Route_1.png?__SQUARESPACE_CACHEVERSION=1319542839834"  />
</div>
<div  class="image-holder2" >
    <img src="http://healthystartups.com/storage/600px-MA_Route_1.png?__SQUARESPACE_CACHEVERSION=1319542839834"  />
</div>
4

1 回答 1

1

这是我放在一起的。jsFiddle

javascript

var img = $(".image-holder img")
var i = 0;
var count = img.length - 1;

setInterval(function() {
    showImage(i);
    i++;
    if (i > count) i = 0;
}, 2000);

function showImage(i) {
    img.eq(i - 1).animate({
        "opacity": "0"
    }, 1000);
    img.eq(i).animate({
        "opacity": "1"
    }, 1000);
}​

HTML

<div  class="image-holder" >
<img src="http://healthystartups.com/storage/600px-MA_Route_1.png?__SQUARESPACE_CACHEVERSION=1319542839834"  />


</div>
<div  class="image-holder" >
<img src="http://digimind.com/blog/wp-content/uploads/2012/02/number2c.png"  />
</div>​

CSS

.image-holder img{ opacity: 0;}
.image-holder { position: absolute; }
于 2012-10-25T13:17:00.300 回答