纯css实现的图片幻灯片效果代码
代码语言:html
所属分类:幻灯片
代码描述:纯css实现的图片幻灯片效果代码,没有使用js,纯粹的div+css实现幻灯片、
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body {
display: grid;
height: 100vh;
place-items: center;
background-image: radial-gradient(circle 4px at center, #ffc857 50%, #ffafcc calc(50% + 1px));
background-size: 20px 20px;
background-color: #ffafcc;
}
.carousel__content--wrapper {
display: none;
}
.carousel:has(input#radio0:checked) .carousel__content--wrapper:nth-child(1) {
display: contents;
}
.carousel:has(input#radio1:checked) .carousel__content--wrapper:nth-child(2) {
display: contents;
}
.carousel:has(input#radio2:checked) .carousel__content--wrapper:nth-child(3) {
displa.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0