-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdemo.html
executable file
·33 lines (26 loc) · 1.24 KB
/
demo.html
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
<!doctype html>
<html class="no-js" lang="en-US">
<head>
<meta charset="utf-8">
<title>Good Share</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/demo.css">
<link rel="stylesheet" href="dist/good-share.min.css">
</head>
<body>
<div class="container">
<h2>Basic</h2>
<p>This share button will share the current page title and url.</p>
<button class="good-share">Share</button>
<h2>Title & URL defined</h2>
<p>This share button will share a defined title and url set by data attributes.</p>
<button class="good-share" data-share-title="Chris Yee" data-share-url="https://chrisyee.ca">Share</button>
<h2>Title, text and URL defined</h2>
<p>This share button will share a defined title, text and url set by data attributes.</p>
<button class="good-share" data-share-title="Chris' Github Profile" data-share-text="Lorem ipsum dolor sit amet, consectetur adipiscing elit" data-share-url="https://github.com/christophery?foo=bar&hello=world">Share</button>
</div>
<script src="dist/good-share.min.js"></script>
</body>
</html>