-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.htm
100 lines (95 loc) · 2.43 KB
/
index.htm
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery Compact Social Media Share Plugin</title>
<script src="jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="jsShare.js" type="text/javascript"></script>
<link href="jsShare.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
$(document).ready(function() {
$('#buttons').jsShare({ maxwidth: 360 });
$('#buttons-expanded').jsShare({ initialdisplay: 'expanded', maxwidth: 360 });
});
</script>
<style type="text/css">
body
{
margin: 0;
padding: 0;
font-family: Myriad Pro, Arial, Tahoma;
background: #FFFFFF url(images/pixel.jpg);
}
#wrapper
{
width: 100%;
height: 100%;
}
#header
{
width: 100%;
height: 80px;
background-color: #f6f6f6;
border-bottom: solid 1px gray;
opacity: 0.7;
}
#header-contents
{
width: 700px;
height: 80px;
margin: auto;
text-align: center;
}
#demo
{
width: 700px;
margin: auto;
height: 78px;
text-align: center;
padding-top: 140px;
}
h1, h2, h3, h4
{
padding: 0;
margin: 0;
font-weight: normal;
}
h2
{
color: #68BDCC;
font-size: 25pt;
}
h3
{
color: Gray;
font-size: 12pt;
}
#demo p
{
text-align: left;
color: #b5B5B5;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="header-contents">
<h2>
Minimal Social Share Plugin</h2>
<h3>
jQuery Compact Social Share Plugin</h3>
</div>
</div>
<div id="demo">
<p>
Spread the word</p>
<div id="buttons">
</div>
<p>
Spread the word</p>
<div id="buttons-expanded">
</div>
</div>
</div>
</body>
</html>