"3d image slider"
Bootstrap 3.3.0 Snippet by asifali

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<h1>3d images gallery</h1>
<div class="container">
<div id="carousel">
<figure><img src="http://lorempixel.com/186/116/nature/1" alt=""></figure>
<figure><img src="http://lorempixel.com/186/116/nature/2" alt=""></figure>
<figure><img src="http://lorempixel.com/186/116/nature/3" alt=""></figure>
<figure><img src="http://lorempixel.com/186/116/nature/4" alt=""></figure>
<figure><img src="http://lorempixel.com/186/116/nature/5" alt=""></figure>
<figure><img src="http://lorempixel.com/186/116/nature/6" alt=""></figure>
<figure><img src="http://lorempixel.com/186/116/nature/7" alt=""></figure>
<figure><img src="http://lorempixel.com/186/116/nature/8" alt=""></figure>
<figure><img src="http://lorempixel.com/186/116/people/9" alt=""></figure>
</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
@import url(http://fonts.googleapis.com/css?family=Anaheim);
*{
margin: 0;
padding: 0;
outline: none;
border: none;
box-sizing: border-box;
}
*:before,
*:after{
box-sizing: border-box;
}
html,
body{
min-height: 100%;
}
body{
background-image: radial-gradient(mintcream 0%, lightgray 100%);
}
h1{
display: table;
margin: 5% auto 0;
text-transform: uppercase;
font-family: 'Anaheim', sans-serif;
font-size: 4em;
font-weight: 400;
text-shadow: 0 1px white, 0 2px black;
}
.container{
margin: 4% auto;
width: 210px;
height: 140px;
position: relative;
perspective: 1000px;
}
#carousel{
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: