-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from Carifio24/update-mv-qr
Fix QR tool and update model-viewer HTML
- Loading branch information
Showing
8 changed files
with
155 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
recursive-include glue_ar/js * | ||
recursive-include glue_ar/resources * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
:root { | ||
--glue-red: #eb1c24; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
background-color: $bg_color; | ||
} | ||
|
||
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%; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<html> | ||
<head> | ||
<script type="module" src="$url"></script> | ||
$style | ||
</head> | ||
<body> | ||
<model-viewer | ||
src="$gltf_path" | ||
camera-orbit="0.9677rad 1.2427rad auto" | ||
shadow-intensity="1" | ||
ar | ||
ar-modes="webxr quick-look" | ||
camera-controls | ||
alt="$alt_text" | ||
> | ||
<button slot="ar-button" class="ar-button"> | ||
$button_text | ||
</button> | ||
</model-viewer> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters