我试图弄清楚如何使用 jquery 在一定时间后使图像出现在屏幕上。我已经使用 CSS 来定位图像并使用 display none 以便在 jquery 调用它之前可以看到它。任何人都可以帮我弄清楚如何在一定时间后使该图像淡入。
我试过这个。
$('#picture ').animate({
width: '100px',
height: '100px'
}, 1000, function() {
$(this).show('slow',{duration: 4000}
)
});
然而,它立即出现。我需要的是随着时间的推移出现。