- export function createVideoElement (element) {
- const el = document.createElement('video')
- el.src = element.blob
- el.controls = true
- el.style.width = element.width + 'px'
- el.style.height = element.height + 'px'
- el.style.position = 'absolute'
- el.style.top = element.top + 'px'
- el.style.left = element.left + 'px'
- el.style.zIndex = element.order
- return el
- }
|