gpt4 book ai didi

具有淡入效果的 CSS 图像 slider

转载 作者:太空宇宙 更新时间:2023-11-04 07:10:22 24 4
gpt4 key购买 nike

我一直在尝试创建一个简单的图像 slider 来展示一个网站的四张图像。我已经设法创建了幻灯片,但是每个图像之间的转换非常快,我想要一点淡入淡出效果,这样它就更平滑了。这里的很多问题已经建议使用 jQuery,但我正在尝试仅使用 CSS。我也探索了 animate.css 但无法让它工作。感谢提供的任何/所有帮助。谢谢 :)

目前的代码如下:

HTML

   <div class="slider">
<div class="feature">
</div>
<div class="overlay">

</div>
</div>

和 CSS

.feature {
animation: slide 3s;

}

.slider {
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 80vh;
animation: slide 10s infinite;
}

.overlay {
color: #fff;
width: 100%;
height: 80vh;
background-color: rgba(0, 0, 0, 0.5);
}



@keyframes slide {
0%{
background-image: url(../resources/feature/Feature1.jpg);
}

25%{
background-image: url(../resources/feature/Feature1.jpg);
}

25.1%{
background-image: url(../resources/feature/Feature2.jpg);
}

50%{
background-image: url(../resources/feature/Feature2.jpg);
}
50.01%{
background-image: url(../resources/feature/Feature3.jpg);
}

75%{
background-image: url(../resources/feature/Feature3.jpg);
}

75.01%{
background-image: url(../resources/feature/Feature4.jpg);
}

100%{
background-image: url(../resources/feature/Feature4.jpg);
}
}

最佳答案

您必须设置“ slider ”的opacitytransition 才能获得效果。

.feature {

}

.slider {
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 80vh;
transition: all .2s ease-in-out;
animation: slide 10s infinite;
}

.overlay {
color: #fff;
width: 100%;
height: 80vh;
background-color: rgba(0, 0, 0, 0.5);
transition: all .2s ease-in-out;
}



@keyframes slide {
0%{
opacity: 0;
background-color: red;
}

20%{
opacity: 1;
background-color: red;
}
25%{
opacity: 0;
background-color: red;
}
25.1%{
opacity: 0;
background-color: blue;
}

45%{
opacity: 1;
background-color: blue;
}
50%{
opacity: 0;
background-color: blue;
}
50.01%{
opacity: 0;
background-color: yellow;
}

70%{
opacity: 1;
background-color: yellow;
}
75%{
opacity: 0;
background-color: yellow;
}

75.01%{
opacity: 0;
background-color: green;
}

95%{
opacity: 1;
background-color: green;
}
100%{
opacity: 0;
background-color: green;
}
}
<div class="slider">
<div class="feature">
</div>
<div class="overlay">

</div>
</div>

关于具有淡入效果的 CSS 图像 slider ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51238836/

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