@adhiban/three-mesh-ui
Version:
a library on top of three.js to help in creating 3D user interfaces, with minor changes ;)
38 lines (32 loc) • 650 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Builds</title>
</head>
<body>
<div class="iframe-container">
<iframe src="./build.browser.html"></iframe>
<iframe src="./build.browser.min.html"></iframe>
<iframe src="./build.module.html"></iframe>
<iframe src="./build.module.min.html"></iframe>
</div>
<style>
body{ margin: 0; padding: 0; height: 100vh }
.iframe-container{
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
}
.iframe-container iframe{
flex-basis: 50%;
height: 50%;
}
iframe{
border: 0;
overflow: hidden;
}
</style>
</body>
</html>