Ajax Loader
×
HTML
<div class="d1"><div class="d2"></div></div>
1
<div class="d1"><div class="d2"></div></div>
 
CSS
.d1 {
1
.d1 {
2
  background-color:white;
3
  width:60px;
4
  height:60px;
5
  margin:50px;
6
  border-radius:100px;
7
  box-shadow:0px 0px 20px #ddd;
8
  position:relative;
9
       -webkit-transition: all .2s ease;
10
  -moz-transition: all .2s ease;
11
  -o-transition: all .2s ease;
12
  -ms-transition: all .2s ease;
13
  transition: all .2s ease;
14
 
15
}
16
.d2 {
17
  background-color:white;
18
  top:9%;
19
  left:-75%;
20
  width:50px;
21
  height:50px;
22
  margin:50px;
23
  border-radius:100px;
24
  box-shadow:0px 0px 20px grey;
25
  position:relative;
26
}
27
 
28
.d1:hover {
29
  background-color:white;
30
  width:110px;
31
  height:110px;
32
  margin:50px;
33
  border-radius:100px;
34
  box-shadow:0px 0px 20px #ddd;
35
  position:relative;
36
 
37
 
38
}
 

kreis

CSSDeck G+