facebook-button
v0.4.0
Published
Facebook button as Web Components
Downloads
18
Readme
facebook-button
Facebook button as Web Components.
Install
Using npm:
$ npm install facebook-button
Usage
Import and register scripts.
<script type="module">
import { FacebookLikeButton, FacebookShareButton } from 'https://unpkg.com/facebook-button';
customElements.define('facebook-like-button', FacebookLikeButton);
customElements.define('facebook-share-button', FacebookShareButton);
</script>
Just put <facebook-like-button>
and <facebook-share-button>
element in your HTML.
<facebook-like-button></facebook-like-button>
<facebook-share-button></facebook-share-button>
FacebooLikeButton
href
: required string, URL to like or sharelayout
: string, must be eitherbutton_count
,button
orbox_count
, default tobutton
size
: string, must be eithersmall
orlarge
, default tosmall
width
: number, width of<facebook-like-button>
action
: string,like
orrecommend
, default tolike
FacebookShareButton
href
: required string, URL to like or sharelayout
: string, must be eitherbutton_count
,button
orbox_count
, default tobutton
size
: string, must be eithersmall
orlarge
, default tosmall
width
: number, width of<facebook-share-button>