"Animated Buttons"
Bootstrap 3.0.0 Snippet by umeshkolate

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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">
<h2>Animated Button</h2>
<p>India is</p>
<b>
<span1>
Richest<br />
Beutifull<br />
Strong<br />
Powerfull<br />
Country
</span1>
</b>
</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 {
padding: 2em 5em;
font: normal 40px/50px Arial, sans-serif;
color: #999;
}
h2
{
color:#0099ff;
}
p {
height: 50px;
float: left;
margin-right: 0.3em;
}
b {
float: left;
overflow: hidden;
position: relative;
height: 50px;
background:red;
padding:0px 10px 0px 10px;
color:#fff;
border-radius:10px;
}
span1 {
display: inline-block;
color:#fff;
position: relative;
white-space: nowrap;
top: 0;
left: 0;
-webkit-animation: move 5s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-delay: 1s;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: