diff --git a/public/demo/bim_0.html b/public/demo/bim_0.html
index f4f505f..fd254b2 100644
--- a/public/demo/bim_0.html
+++ b/public/demo/bim_0.html
@@ -46,7 +46,6 @@
}
const viewer = new BimViewer({
containerId: "myCanvas",
- enableStats: true
}, project.camera);
const toolbar = viewer.toolbar;
toolbar.updateMenu(ToolbarMenuId.BimTree, { visible: false });
diff --git a/public/demo/bim_1.html b/public/demo/bim_1.html
index aca5e1f..9580f4b 100644
--- a/public/demo/bim_1.html
+++ b/public/demo/bim_1.html
@@ -33,7 +33,6 @@
{
containerId: "myCanvas",
enableAxisGizmo: true,
- enableStats: true,
toolbarMenuConfig: {
[ToolbarMenuId.Measure]: { visible: false },
[ToolbarMenuId.Fullscreen]: { visible: false },
diff --git a/public/demo/empty_dxf_project.html b/public/demo/empty_dxf_project.html
index 7e65623..880b8c8 100644
--- a/public/demo/empty_dxf_project.html
+++ b/public/demo/empty_dxf_project.html
@@ -78,7 +78,6 @@
const config = {
containerId: "myCanvas",
enableAxisGizmo: true,
- enableStats: true,
enableToolbar: true,
enableBottomBar: true,
enableSpinner: true,
diff --git a/public/demo/empty_model_project.html b/public/demo/empty_model_project.html
index 0efafd6..95fa56f 100644
--- a/public/demo/empty_model_project.html
+++ b/public/demo/empty_model_project.html
@@ -82,7 +82,6 @@
{
containerId: "myCanvas",
enableAxisGizmo: true,
- enableStats: true,
toolbarMenuConfig: {
[ToolbarMenuId.BimTree]: { visible: false },
},
diff --git a/public/demo/images/dwg_background.png b/public/demo/images/dwg_background.png
new file mode 100644
index 0000000..3d3c632
Binary files /dev/null and b/public/demo/images/dwg_background.png differ
diff --git a/src/pages/examples/index.css b/src/pages/examples/index.css
index c058688..de0307c 100644
--- a/src/pages/examples/index.css
+++ b/src/pages/examples/index.css
@@ -35,11 +35,12 @@
border: 0;
background: transparent;
cursor: pointer;
+ color: #ccc;
}
.examples .index-button.open {
left: 485px;
- color: white;
+ /* color: white; */
}
.examples .content-container {
@@ -54,6 +55,8 @@
pointer-events: all;
transition: all 300ms ease-in-out;
background: lightblue;
+ background: url(./../../../public/demo/images/dwg_background.png) no-repeat center center fixed;
+ background-size: cover;
}
/* .examples .content-container.open {
@@ -97,11 +100,12 @@
transition: all 300ms ease-in-out;
max-width: calc(100% - 450px);
pointer-events: none;
+ color: #ccc;
}
.examples .page-title.open {
left: 545px;
- color: white;
+ /* color: white; */
}
.examples .menu #index {