1.1.0 • Published 3 years ago
w1modal-video v1.1.0
Modal Video
Modal Video Library
Features
- Not affected by dom structure.
- Beautiful transition
- Accessible for keyboard navigation and screen readers.
- Rich options for youtube API and Vimeo API
Installation
via npm
npm install modal-video --saveor yarn
yarn add modal-videoShort Sample
Basic
<button class="js-modal-btn" data-video-id="XJS_UYNq4No">Open Video</button>new ModalVideo('.js-modal-btn');Vimeo
<button class="js-modal-btn" data-video-id="202177974">Open Vimeo</button>// import ModalVideo from 'modal-video';
new ModalVideo('.js-modal-btn', {channel: 'vimeo'});MP4
<button class="js-modal-btn" data-video-url="https://developer.a-blogcms.jp/themes/developer/movies/280.mp4">Open Video</button>new ModalVideo('.js-modal-btn');OR
<button class="js-modal-btn" data-channel="custom">Open Video</button>new ModalVideo('.js-modal-btn', {url: 'https://developer.a-blogcms.jp/themes/developer/movies/280.mp4'});Options
About YouTube options, please refer to https://developers.google.com/youtube/player_parameters?hl=en
About Vimeo options, please refer to https://developer.vimeo.com/apis/oembed
FAQ
How to track YouTube videos playing in modal-video with Google Tag Manager?
- Enable JS API. Turn
enablejsapiproperty to1. - Load YouTube Iframe API. Add
<script src="https://www.youtube.com/iframe_api"></script>in HTML file.