UNPKG

video-ad-sdk

Version:

VAST/VPAID SDK that allows video ads to be played on top of any player

7 lines (6 loc) 214 B
export const createAdVideoElement = (contentDocument = document) => { const video = contentDocument.createElement('video'); video.style.width = '100%'; video.style.height = '100%'; return video; };