Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add M83 examples #82

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/examples/m83_isosurface.glb
Binary file not shown.
90 changes: 90 additions & 0 deletions docs/examples/m83_isosurface.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<html>
<head>
<script type="module" src="https://ajax.googleapis.com/ajax/libs/model-viewer/3.3.0/model-viewer.min.js"></script>
<style>:root {
--glue-red: #eb1c24;
}

body {
margin: 0;
background-color: white;
}

model-viewer {
width: 100%;
height: 100%;
}

/* This keeps child nodes hidden while the element loads */
:not(:defined) > * {
display: none;
}
.ar-button {
background-repeat: no-repeat;
background-size: 20px 20px;
background-position: 12px 50%;
background-color: #f5c6c888;
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 16px;
padding: 0px 16px 0px 40px;
font-family: Roboto Regular, Helvetica Neue, sans-serif;
font-size: 60pt;
font-weight: bold;
color: var(--glue-red);
height: 200px;
width: max(300px, 80%);
border-radius: 18px;
border: 5px solid var(--glue-red);
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 10px;
}
.ar-button:active {
background-color: #E8EAED;
}
.ar-button:focus {
outline: none;
}
.ar-button:focus-visible {
outline: 1px solid #1f5ef1;
}
.info {
display: block;
position: absolute;
font-family: Futura, Helvetica Neue, sans-serif;
color: rgba(0, 0, 0, 0.8);
font-weight: 700;
font-size: 18px;
max-width: 128px;
padding: 0.5em 1em;
background: #ddd;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
left: calc(100% + 1em);
top: 50%;
}

</style>
</head>
<body>
<model-viewer
src="m83_isosurface.glb"
ios-src="m83_isosurface.usdz"
camera-orbit="0.9677rad 1.2427rad auto"
shadow-intensity="1"
ar
ar-modes="webxr quick-look"
camera-controls
alt="None"
>
<button slot="ar-button" class="ar-button">
View in AR
</button>
</model-viewer>
</body>
</html>

Binary file added docs/examples/m83_isosurface.usdz
Binary file not shown.
Binary file modified docs/examples/m83_voxel.glb
Binary file not shown.
1 change: 1 addition & 0 deletions docs/examples/m83_voxel.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
<body>
<model-viewer
src="m83_voxel.glb"
ios-src="m83_voxel.usdz"
camera-orbit="0.9677rad 1.2427rad auto"
shadow-intensity="1"
ar
Expand Down
Binary file added docs/examples/m83_voxel.usdz
Binary file not shown.
Loading