0.4.0 • Published 3 years ago

facebook-button v0.4.0

Weekly downloads
13
License
MIT
Repository
github
Last release
3 years ago

facebook-button GitHub Actions Status devDependency Status

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 share
  • layout: string, must be either button_count, button or box_count, default to button
  • size: string, must be either small or large, default to small
  • width: number, width of <facebook-like-button>
  • action: string, like or recommend, default to like

FacebookShareButton

  • href: required string, URL to like or share
  • layout: string, must be either button_count, button or box_count, default to button
  • size: string, must be either small or large, default to small
  • width: number, width of <facebook-share-button>

License

MIT © Shogo Sensui