UNPKG

tricks

Version:
21 lines (17 loc) 359 B
import CSSsupport from './CSSsupports.js'; let bool = false; // Test to see if the HTML5 player supports AUTOPLAY const v = document.createElement('video'); try { // IE doesn't like this v.src = 'data:video/mpeg;base64,'; if (v.play) { v.play(); bool = !v.paused; } } catch { // Continue } CSSsupport('video-autoplay', bool); export default bool;