gpt4 book ai didi

jquery 为幻灯片设置自己的 css-preloader

转载 作者:太空宇宙 更新时间:2023-11-04 15:12:01 27 4
gpt4 key购买 nike

我使用 CSS 创建了一个预加载器。我想在预加载器完成后在幻灯片放映中显示图像。预加载完成后,图像应该会平滑淡入。这是我的代码结构。

<!DOCTYPE html>
<html>
<head>
<style>
#container{
display: block;
margin: 0px auto;
}
#preloader {
margin:10px;
width:300px;
height:1px;
background:#e1e1e1;
}
.fillcolour {
width:300px;
height:1px;
background:#888888;
position:absolute;
-moz-animation:fullexpand 5s ease-out;
-webkit-animation:fullexpand 5s ease-out;
}
@-moz-keyframes fullexpand {
0% { width:0px;}
100%{ width:175px;}
}
@-webkit-keyframes fullexpand {
0% { width:0px;}
100%{ width:175px;}
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('#preloader').fadeOut(2000);
$('#container').css({'display':'block'}).fadeIn(3000);
});
$(window).load(function(){
/*$('#preloader').fadeOut(2000).css({'opacity':0});
$('.fillcolour').fadeOut(2000).css({'opacity':0});
$('#container').css({'display':'block'}).fadeIn(3000);*/
});
</script>
</head>
<body>
<div id="container" style="display:none;">
<img src="1.jpg" style="width:300px;height:200px;"/>
</div>
<div id="preloader">
<span class="fillcolour"></span>
</div>
</body>
</html>

有人可以帮忙吗?请!

最佳答案

当你想要一个有序的调用电话时,当一个操作完成时另一个开始。使用 Jquery "complete" parameter .

尝试

$(document).ready(function(){
$('#preloader').fadeOut(2000, function(){
$('#container').css({'display':'block'}).fadeIn(3000);
});
});

关于jquery 为幻灯片设置自己的 css-preloader,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15265967/

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