gpt4 book ai didi

javascript - 如何一张一张显示背景图片?

转载 作者:行者123 更新时间:2023-11-28 04:18:59 28 4
gpt4 key购买 nike

CSS代码

#intro  {
position: relative;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center top;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
text-align: center;
padding-top: 15.6rem;
overflow: hidden;
}
#intro > figure {
animation: imageAnimation 30s linear infinite 0s;
backface-visibility: hidden;
background-size: cover;
background-position: center center;
color: transparent;
height: 100%;
left: 0px;
opacity: 0;
position: absolute;
top: 0px;
width: 100%;
z-index: 0;
margin-left: 0px;
}
#intro > figure:nth-child(1){
background-image: url('../images/1.jpg');
}
#intro > figure:nth-child(2){
animation-delay: 6s;
background-image: url('../images/2.jpg');
}
#intro > figure:nth-child(3){
animation-delay: 12s;
background-image: url('../images/3.jpg');
}

html代码:

 <section id="intro">
<figure></figure>
<figure></figure>
<figure></figure>
</section>

在这段代码中,我将一张一张地显示背景图像,但这里当背景图像在第三张图像后一张一张地淡出时,它显示黑色背景。那么,如何删除黑色背景我只想使用 css 显示图像。

谢谢

最佳答案

如果没有理由避免使用 jQuery 插件,只需尝试使用 Slick carousel .

看看“淡化”,效果很好。

关于javascript - 如何一张一张显示背景图片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42314081/

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