"Pure CSS Card Carousel"
Bootstrap 4.1.1 Snippet by koshikojha

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div id='wrap'>
<input class='trigger' name='rad' type='radio'>
<input class='trigger' name='rad' type='radio'>
<input class='trigger' name='rad' type='radio'>
<input class='trigger' name='rad' type='radio'>
<input class='trigger' name='rad' type='radio'>
<input class='trigger' name='rad' type='radio'>
<input class='trigger' name='rad' type='radio'>
<input checked='checked' class='trigger' name='rad' type='radio'>
<div class='innerwrap'>
<input type='checkbox'>
<input type='checkbox'>
<input type='checkbox'>
<input type='checkbox'>
<input type='checkbox'>
<input type='checkbox'>
<input type='checkbox'>
<input type='checkbox'>
<div class='cards'>
<div class='cardwrap'>
<div class='card'>
<div class='inner'>
<h1><span>Hey Now</span>Somebody</h1>
<div class='text'>
<p>Well the years start coming and they don't stop coming</p>
</div>
<div class='link'>
<p>Fed to the rules and I hit the ground running</p>
</div>
</div>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
background: #e4e2e5;
}
body #wrap {
width: 800px;
height: 500px;
box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.15);
overflow: hidden;
position: relative;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
background: linear-gradient(to bottom, #fff 50%, #e4e2e5 50%);
}
body #wrap .trigger {
position: absolute;
width: 5%;
height: 100%;
bottom: 0;
right: 0;
z-index: 99;
opacity: 1;
cursor: pointer;
}
body #wrap .trigger:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: #fff;
box-shadow: -1px 0 0 0 rgba(0, 0, 0, 0.015);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: