comparison WebApplications/o3dv.html @ 36:13698d34e059

preparing to include O3DV
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 05 Apr 2024 07:42:06 +0200
parents
children b798387b085c
comparison
equal deleted inserted replaced
35:ee3bc8f7df5b 36:13698d34e059
1 <!DOCTYPE html>
2 <html>
3
4 <head>
5 <meta http-equiv="content-type" content="text/html;charset=utf-8">
6 <meta name="viewport" content="width=device-width, user-scalable=no">
7
8 <title>Orthanc STL viewer (O3DV)</title>
9
10 <style>
11 html, body {
12 width: 100%;
13 height: 100%;
14 margin: 0px;
15 border: 0;
16 overflow: hidden;
17 display: block;
18 }
19
20 div.online_3d_viewer {
21 position: absolute;
22 left: 0;
23 top: 0;
24 width: 100%;
25 height: 100%;
26 }
27 </style>
28 </head>
29
30 <body>
31 <div class="online_3d_viewer" id="viewer"></div>
32
33 <script type="text/javascript" src="libs/o3dv.min.js"></script>
34 <script type="text/javascript" src="o3dv.js"></script>
35 </body>
36
37 </html>