"Site Corner Animation Move"
Bootstrap 3.0.0 Snippet by naimansari

1
2
3
4
5
6
7
8
9
10
<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">
<div class="circle"></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
.circle {
width:250px;
height:250px;
background:#f33;
border-radius:50%;
position:absolute;
top:-250px;
right:-125px;
animation: corner-move 20s linear 1s infinite;
-webkit-animation: corner-move 20s linear 1s infinite;
}
@keyframes corner-move {
0% { top:-250px; right:-125px;}
25% { top:-160px; right:-125px;}
50% { top:-160px; right:-60px;}
75% { top:-200px; right:-60px;}
100% { top:-250px; right:-125px;}
}
@-webkit-keyframes corner-move {
0% { top:-250px; right:-125px;}
25% { top:-160px; right:-125px;}
50% { top:-160px; right:-60px;}
75% { top:-200px; right:-60px;}
100% { top:-250px; right:-125px;}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: