diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebApplications/o3dv.html	Fri Apr 05 07:42:06 2024 +0200
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+
+  <head>
+    <meta http-equiv="content-type" content="text/html;charset=utf-8">
+    <meta name="viewport" content="width=device-width, user-scalable=no">
+
+    <title>Orthanc STL viewer (O3DV)</title>
+
+    <style>
+      html, body {
+          width: 100%;
+          height: 100%;
+          margin: 0px;
+          border: 0;
+          overflow: hidden;
+          display: block;
+      }
+
+      div.online_3d_viewer {
+          position: absolute;
+          left: 0;
+          top: 0;
+          width: 100%;
+          height: 100%;
+      }
+    </style>
+  </head>
+
+  <body>
+    <div class="online_3d_viewer" id="viewer"></div>
+
+    <script type="text/javascript" src="libs/o3dv.min.js"></script>
+    <script type="text/javascript" src="o3dv.js"></script>
+  </body>
+
+</html>