.html
<div class="container">
<div class="carousel">
<div class="carousel-image">
<img src="https://www.apple.com.cn/newsroom/images/product/app-store/apple_app-store-small-business-program_ksebati-and-oxner_11182020_inline.jpg.large.jpg">
</div>
</div>
</div>
.css
*{
padding: 0;
margin: 0;
box-sizing: border-content;
}
body{
background-color: #f0f0f0;
}
.container{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.carousel{
background-color: #fff;
box-shadow: 0 0 20px rgba(0 0 0 / 20%);
padding: 10px;
border-radius: 5px;
}
.carousel-image{
width: 500px;
height: 300px;
position: relative;
border-radius: 5px;
overflow: hidden;
}
.carousel-image img{
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
object-fit: cover;
z-index: 0;
animation: 6s changeImage linear infinite;
}
.carousel::after{
content: 'nmsl';
display: block;
margin-top: 10px;
text-align: center;
font-size: 1.5rem;
font-weight: bold;
animation: 6s changeText linear infinite;
}
@keyframes changeImage{
0%{
content: url(https://www.apple.com.cn/newsroom/images/product/app-store/apple_app-store-small-business-program_ksebati-and-oxner_11182020_inline.jpg.large.jpg);
}
50%{
content: url(https://jz-ci-cdn.594088.xyz/wp-content/uploads/2020/05/moon-in-the-sky-3284294-1536x1024.jpg);
}
}
@keyframes changeText{
0%{
content: 'nmsl';
}
50%{
content: 'awsl';
}
}