"css Animation"
Bootstrap 3.0.0 Snippet by ALIMUL AL RAZY

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
<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 ---------->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<div class="welcome-section content-hidden">
<div class="content-wrap">
<ul class="fly-in-text">
<li>H</li>
<li>i</li>
</ul>
<a href="#" class="enter-button">Enter</a>
</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
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Open Sans', Arial, sans-serif;
font-weight: 700;
}
.welcome-section {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: #000;
overflow: hidden;
}
.welcome-section .content-wrap {
position: absolute;
left: 50%;
top: 50%;
transform: translate3d(-50%, -50%, 0);
}
.welcome-section .content-wrap .fly-in-text {
list-style: none;
}
.welcome-section .content-wrap .fly-in-text li {
display: inline-block;
margin-right: 30px;
font-size: 5em;
color: #fff;
opacity: 1;
transition: all 2s ease;
}
.welcome-section .content-wrap .fly-in-text li:last-child {
margin-right: 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$(function() {
var welcomeSection = $('.welcome-section'),
enterButton = welcomeSection.find('.enter-button');
setTimeout(function() {
welcomeSection.removeClass('content-hidden');
}, 500);
enterButton.on('click', function(e) {
e.preventDefault();
welcomeSection.addClass('content-hidden').fadeOut();
});
})();
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: