gpt4 book ai didi

javascript - imagesLoaded 插件不起作用

转载 作者:行者123 更新时间:2023-12-02 18:24:29 24 4
gpt4 key购买 nike

这是我的尝试,但没有成功。它会触发,但加载的图像不会“淡入”

附Jsfiddle:http://jsfiddle.net/NgwTa/

    var insert = "<div class='thediv'><img src='http://s1.cdn.autoevolution.com/images/news/gallery/mercedes-c63-amg-black-series-tuned-by-vath-photo-gallery_9.jpg'></div><br><div class=thediv><img src='http://s1.cdn.autoevolution.com/images/news/gallery/mercedes-c63-amg-black-series-tuned-by-vath-photo-gallery_9.jpg'></div>";


$('.clickit').click(function(){

$('.container').imagesLoaded(function(){
$('.box').html(insert);
});


});

最佳答案

imagesloaded 插件不适用于淡入淡出图像。当图像加载到浏览器时,它只会引发回调。

您需要在 CSS 上添加额外的一行来首先隐藏图像。

.thediv img {
width:300px;
height:200px;
display:none}

然后在脚本中的图像中添加淡入效果。

$('.clickit').click(function(){

$('.container').imagesLoaded(function(){
$('.box').html(insert);
$('.thediv img').fadeIn();
});


});

这是一个JSfiddle

关于javascript - imagesLoaded 插件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18522250/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com