如何使将3D模型插入到视频中去
需要使用 three和 file-saver 这两个库 实现原理是通过将video 标签设置为父元素 将container设为子元素 进行覆盖同时子元素 的背景设置为透明 **
直接上代码
` .wrapper { position: relative; width: 100%; height: 100%; } .container { position: absolute; bottom: 0; left: 0; width: 200px; height: 200px; }
`