"Best Text Animation using CSS and Bootstrap"
Bootstrap 3.0.0 Snippet by webcoderskull

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
<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="container">
<div class="row">
<svg viewBox="0 0 860 250">
<symbol id="web-coderskull">
<text text-anchor="middle" x="50%" y="70%">Coder Skull</text>
</symbol>
<g class = "webcoderskull">
<use xlink:href="#web-coderskull" class="web-coder-skull"></use>
<use xlink:href="#web-coderskull" class="web-coder-skull"></use>
<use xlink:href="#web-coderskull" class="web-coder-skull"></use>
<use xlink:href="#web-coderskull" class="web-coder-skull"></use>
<use xlink:href="#web-coderskull" class="web-coder-skull"></use>
</g>
</svg>
</div>
<div class="row">
<h4> By: Web Coder Skull</h4>
</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
@import url('https://fonts.googleapis.com/css?family=Roboto');
html, body{
height: 100%;
font-weight: 800;
}
body{
background: #000;
font-family: 'Roboto', sans-serif;
}
h4{
color:#fff;
}
svg {
display: block;
font: 10.5em 'Roboto';
font-family: 'Roboto', sans-serif;
width: 960px;
height: 300px;
margin: 0 auto;
}
.web-coder-skull {
fill: none;
stroke: white;
stroke-dasharray: 6% 29%;
stroke-width: 5px;
stroke-dashoffset: 0%;
animation: stroke-offset 5.5s infinite linear;
}
.web-coder-skull:nth-child(6){
stroke: #263238;
animation-delay: -1;
}
.web-coder-skull:nth-child(2){
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

Awesome, thanks :)

karloromeo () - 6 years ago - Reply 0