"Animation top to down"
Bootstrap 3.3.0 Snippet by naimansari

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<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 ---------->
<div class="wrapper">
<div class="line"></div>
<div class="circle-2">
see
</div>
<div class="circle">
see
</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
.wrapper {
text-align:center;
font-size:20px;
color:#fff;
position:relative;
}
/*
.line {
width:1px;
height:100px;
color:#000;
background:#000;
margin-left:250px;
animation: line 5s ease-in-out 2s infinite;
} */
.circle-2 {
width: 1px;
height: 200px;
background: red;
position:absolute;
top:0;
left:250px;
}
.circle {
line-height:100px;
width: 100px;
border-radius:50px;
height: 100px;
background: red;
position: relative;
animation: mymove 5s ease-in-out 2s infinite;
position:absolute;
top:100px;
left:200px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: