video.js 374 B

123456789101112
  1. export function createVideoElement (element) {
  2. const el = document.createElement('video')
  3. el.src = element.blob
  4. el.controls = true
  5. el.style.width = element.width + 'px'
  6. el.style.height = element.height + 'px'
  7. el.style.position = 'absolute'
  8. el.style.top = element.top + 'px'
  9. el.style.left = element.left + 'px'
  10. el.style.zIndex = element.order
  11. return el
  12. }