Hey @khanh.nguyen,
Yes there is a way to put the Meeting UI into a div.
The Zoom Meeting UI is not atcually attached to the body. The css makes it seem that way because of the following styles:
#zmmtg-root {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background-color: black;
}
The Zoom Meeting UI will be rendered in the tag with the zmmtg-root
id. You can place this anywhere in your project. You can also customize the css classes that are generated as well.
<div id="zmmtg-root"></div>
Let me know if this helps!
Thanks,
Tommy