-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
102 lines (99 loc) · 2.37 KB
/
index.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
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
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Sharelink Test" />
<meta
property="og:image"
content="https://images.unsplash.com/photo-1617386564901-be7cfcaa4c60"
/>
<title>Sharelink Test</title>
</head>
<body>
<h1>Sharelinks</h1>
<p>Note: Some links may not work if trying to share from localhost</p>
<ul>
<li>
<a href="#" class="share" data-platform="facebook">
Share on Facebook
</a>
</li>
<li>
<a href="#" class="share" data-platform="linkedin">
Share on LinkedIn
</a>
</li>
<li>
<a
href="#"
class="share"
data-platform="whatsapp"
>
Share on Whatsapp
</a>
</li>
<li>
<a href="#" class="share" data-platform="twitter">
Share on Twitter
</a>
</li>
<li>
<a href="#" class="share" data-platform="twitter" data-url="https://example.com/custom-share-url">
Share on Twitter (Custom URL)
</a>
</li>
<li>
<a
href="#"
class="share"
data-title="Custom Title for Tweet"
data-platform="twitter"
>
Share on Twitter (Custom Title Text)
</a>
</li>
<li>
<a
href="#"
class="share"
data-platform="pinterest"
>
Share on Pinterest (OG:Image)
</a>
</li>
<li>
<a
href="#"
class="share"
data-platform="pinterest"
data-image="https://images.unsplash.com/photo-1617380951201-c3c15ad20534"
>
Share on Pinterest (Custom Image)
</a>
</li>
<li>
<a href="#" class="share" data-platform="my-custom-platform">
Custom Platform
</a>
</li>
<li>
<a href="#" class="share" data-platform="this-is-wrong">
Bad platform
</a>
</li>
<li>
<a
href="#"
class="share"
data-platform="twitter"
data-width="800"
data-height="800"
>
Custom popup size
</a>
</li>
</ul>
<script type="module" src="/index.js"></script>
</body>
</html>