"card animation"
Bootstrap 3.0.0 Snippet by evarevirus

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="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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 ---------->
<div class="video-bg">
<div class="text-content">
<div class="par">That's it folks, thanks for coming!<br>Follow me for more awesome interaction like this in the future.</div>
<button class="close">Go back</button>
</div>
</div>
<div class="translucent-ctr">
<div class="translucent"></div>
</div>
<div class="slider-ctr">
<div class="text-content">
<div class="title">Select Movies</div>
<div class="par detail">Scroll horizontally to navigate</div>
</div>
<div class="slider-scroll">
<div class="slide">
<figure>
<div class="image-ctr">
<div class="image deadpool" data-index="{#i}">
<div class="light"></div>
</div>
<figcaption>Deadpool</figcaption>
</div>
</figure>
</div>
<div class="slide">
<figure>
<div class="image-ctr">
<div class="image godfather" data-index="{#i}">
<div class="light"></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
@font-face {
font-family: "San Francisco";
font-weight: 400;
src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
}
html,
body {
position: relative;
height: 100%;
}
body {
font-family: "San Francisco";
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: perspective(1600px);
-moz-transform: perspective(1600px);
-ms-transform: perspective(1600px);
-o-transform: perspective(1600px);
transform: perspective(1600px);
overflow: hidden;
}
.video-bg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10;
display: table;
pointer-events: none;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: