Ajax Loader
HTML
<div id="wrapper">
1
<div id="wrapper">
2
  <div id="share">
3
  </div>
4
  <div id="pane"></div>
5
  <span>share</span>
6
</div>
 
CSS
@font-face{
1
@font-face{
2
  src:url('https://dl.dropbox.com/u/94346812/cssdeck/fonts/FACEBOLF.ttf');
3
  font-family:facebook;
4
}
5
html{
6
  background:#fff;
7
  width:100%;
8
  height:100%;
9
  margin:0;
10
  padding:0;
11
  box-shadow:inset 0 200px 100px #ccc;
12
  }
13
#wrapper{
14
  width:100px;
15
  height:auto;
16
  margin:auto;
17
  box-shadow:0 20px 20px 1px #ccc;
18
}
19
 
20
#share{
21
  width:100px;
22
  height:70px;
23
  margin:200px auto 0;
24
  background:#3c5a93;
25
  box-shadow:0 0 2px #666;
26
  transition:all .4s ease;
27
  border-radius:1px;
28
  border-bottom-left-radius:0px;
29
  border-bottom-right-radius:0px; 
30
}
31
#share:after{
32
  content:'f';
33
  color:#fff;
34
  text-shadow:0 -1px 0 #3c5a93;
35
  font-size:130px;
36
  font-weight:bold;
37
  line-height:1;
38
  margin:auto 40px;
39
}
40
#pane{
41
  display:block;
42
  width:100px;
43
  height:50px;
44
  margin:auto;
45
  background:#3c5a93;
46
  box-shadow:0 0 2px #666;
47
  border-radius:1px;
48
  border-top-left-radius:0px;
49
  border-top-right-radius:0px;  
50
  transition:margin .5s ease, background .5s ease;
51
}
52
#wrapper span{ 
53
  color:#3c5a93;
54
  font-size:32px;
55
  margin:;
56
  opacity:0;
57
  font-family:facebook;
58
  font-weight:lighter;
59
  text-shadow:0 0 1px #fff;
60
  transition:all .5s ease .7s;
61
  position:absolute;
62
}
63
#wrapper span:after{
64
  content:'';
65
  display:block;
66
  position:absolute;
67
  width:100px;
68
  height:0.01em;
69
  background:transparent;
70
  box-shadow:0 0 20px 1px #333;
71
}
72
 
73
#wrapper:hover > #pane{
74
  margin:10px auto;
75
  background:#6d85b0;
76
}
77
#wrapper:hover > #share {
78
  margin-top:210px;
79
  height:70px;
80
  box-shadow:0 0 10px #cdd8e8;  
81
}
82
#wrapper:hover > span{ 
83
  opacity:1;
84
}
85
 
 
JavaScript
// Alternative Facebook share Button
1
// Alternative Facebook share Button
2
// Made with ❤ by @LukyVj
 

Alternative facebook share button

CSSDeck G+