Lightweight, stylish, and ethical share buttons
https://shareon.js.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
3.5 KiB
116 lines
3.5 KiB
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8" /> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
|
<title>Shareon Demo Page</title> |
|
|
|
<style> |
|
body { |
|
max-width: 800px; |
|
margin: 0 auto; |
|
font-family: sans-serif; |
|
} |
|
|
|
code { |
|
font-family: monospace; |
|
font-size: 1em; |
|
} |
|
|
|
.shareon.specimen { |
|
font-weight: 600; |
|
} |
|
</style> |
|
|
|
<link rel="stylesheet" href="./src/shareon.css" /> |
|
</head> |
|
|
|
<body> |
|
<main> |
|
<h1>Shareon Demo Page</h1> |
|
<section> |
|
<h2><code><a></code></h2> |
|
<div class="shareon"> |
|
<a class="facebook"></a> |
|
<a class="linkedin"></a> |
|
<a class="mastodon"></a> |
|
<a class="messenger" data-fb-app-id="3619024578167617"></a> |
|
<a class="odnoklassniki"></a> |
|
<a class="pinterest"></a> |
|
<a class="pocket"></a> |
|
<a class="reddit"></a> |
|
<a class="telegram"></a> |
|
<a class="twitter"></a> |
|
<a class="viber"></a> |
|
<a class="vkontakte"></a> |
|
<a class="whatsapp"></a> |
|
</div> |
|
</section> |
|
<section> |
|
<h2><code><button></code></h2> |
|
<div class="shareon"> |
|
<button class="facebook"></button> |
|
<button class="linkedin"></button> |
|
<button class="mastodon"></button> |
|
<button class="messenger" data-fb-app-id="3619024578167617"></button> |
|
<button class="odnoklassniki"></button> |
|
<button class="pinterest"></button> |
|
<button class="pocket"></button> |
|
<button class="reddit"></button> |
|
<button class="telegram"></button> |
|
<button class="twitter"></button> |
|
<button class="viber"></button> |
|
<button class="vkontakte"></button> |
|
<button class="whatsapp"></button> |
|
</div> |
|
</section> |
|
<section> |
|
<h2><code><a></code> with custom params</h2> |
|
<div |
|
class="shareon" |
|
data-title="shareon demo page test" |
|
data-url="https://demo.shareon.js.org" |
|
data-text="hey check this out" |
|
> |
|
<a class="facebook"></a> |
|
<a class="linkedin"></a> |
|
<a class="mastodon" data-via="@NickKaramoff@fosstodon.org"></a> |
|
<a class="messenger" data-fb-app-id="3619024578167617"></a> |
|
<a class="odnoklassniki"></a> |
|
<a class="pinterest"></a> |
|
<a class="pocket"></a> |
|
<a class="reddit"></a> |
|
<a class="telegram"></a> |
|
<a class="twitter" data-via="nickkaramoff"></a> |
|
<a class="viber"></a> |
|
<a class="vkontakte"></a> |
|
<a class="whatsapp"></a> |
|
</div> |
|
</section> |
|
<section> |
|
<h2>Specimen</h2> |
|
<div class="shareon specimen"> |
|
<a class="facebook">Share</a> |
|
<a class="linkedin"></a> |
|
<a class="mastodon">Toot</a> |
|
<a class="messenger" data-fb-app-id="3619024578167617"></a> |
|
<a class="odnoklassniki"></a> |
|
<a class="pinterest">Pin</a> |
|
<br /> |
|
<a class="pocket"></a> |
|
<a class="reddit"></a> |
|
<a class="telegram"></a> |
|
<a class="twitter"></a> |
|
<a class="viber"></a> |
|
<a class="vkontakte">Отправить</a> |
|
<a class="whatsapp"></a> |
|
</div> |
|
</section> |
|
</main> |
|
|
|
<script type="module"> |
|
import { init } from "./src/shareon.js"; |
|
init(); |
|
</script> |
|
</body> |
|
</html>
|
|
|