123456789101112131415161718 |
- /*
- * @Author: LiZhiWei
- * @Date: 2025-05-14 15:22:27
- * @LastEditors: LiZhiWei
- * @LastEditTime: 2025-05-14 15:22:38
- * @Description:
- */
- export function createAudioElement (element) {
- const el = document.createElement('audio')
- el.src = element.blob
- el.controls = true
- 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
- }
|