css实现名人名言卡片轮换左右切换效果代码
代码语言:html
所属分类:幻灯片
代码描述:css实现名人名言卡片轮换左右切换效果代码,底部有指示圆点,左右点击可切换名人名言。
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
@charset "UTF-8";
body {
margin: 0;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
* {
box-sizing: border-box;
}
.main {
display: flex;
align-items: center;
justify-content: center;
background-color: #efefef;
overflow: hidden;
height: 100vh;
width: 100vw;
}
.testimonials {
background-color: #ffffff;
width: 100%;
max-width: 740px;
margin: 20px;
box-shadow: 0 6px 5px -7px #cbcbcb;
border-radius: 3px;
position: relative;
opacity: 0;
animation: showTestimonials 0.32s 0.78s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
}
.testimonials input {
display: none;
visibility: hidden;
height: 0;
width: 0;
pointer-events: none;
opacity: 0;
}
@keyframes showTestimonials {
to {
opacity: 1;
}
}
.testimonials-inner {
position: relative;
min-height: 100px;
}
.testimonial {
padding: 40px 34px 20px 34px;
margin: 0 30px;
pointer-events: none;
position: relative;
z-index: 1;
}
input[name=testimonial]:nth-child(1):checked ~ .testimonials-inner .testimonial:nth-child(1),
input[name=testimonial]:nth-child(2):checked ~ .testimonials-inner .testimonial:nth-child(2),
input[name=testimonial]:nth-child(3):checked ~ .testimonials-inner .testimonial:nth-child(3),
input[name=testimonial]:nth-child(4):checked ~ .testimonials-inner .testimonial:nth-child(4) {
pointer-events: initial;
}
.testimonial {
transition: 0.72s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.32s 0.12s;
opacity: 0;
transform: translate(0, 38px);
max-height: 80px;
animation: hideTestimonial 0s 0.52s forwards;
position: relative;
}
input[name=testimonial]:nth-child(1):checked ~ .testimonials-inner .testimonial:nth-child(1),
input[name=testimonial]:nth-child(2):checked ~ .testimonials-inner .testimonial:nth-child(2),
input[name=testimonial]:nth-child(3):checked ~ .testimonials-inner .testimonial:nth-child(3),
input[name=testimonial]:nth-child(4):checked ~ .testimonials-inner .testimonial:nth-child(4) {
animation: showTestimonial 0s 0.72s forwards;
position: absolute;
opacity: 1;
transform: none;
max-height: 500px;
transit.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0