Skip to content

Commit

Permalink
docs: no-bare-url
Browse files Browse the repository at this point in the history
  • Loading branch information
saturday06 committed Oct 22, 2023
1 parent 0bc47af commit 75b927c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 32 deletions.
44 changes: 13 additions & 31 deletions Assets/WebGLTemplates/VrmDowngrader/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@
margin: 0;
padding: 0;
border: none;
transform: none;
background: {{{ BACKGROUND_FILENAME ? 'url(\'Build/' + BACKGROUND_FILENAME.replace(/'/g, '%27') + '\') center / cover' : BACKGROUND_COLOR }}};
}
#unity-container, #unity-canvas {
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
width: 100%;
height: 100%;
background: {{{ BACKGROUND_FILENAME ? 'url(\'Build/' + BACKGROUND_FILENAME.replace(/'/g, '%27') + '\') center / cover' : BACKGROUND_COLOR }}};
}
</style>
Expand All @@ -22,37 +33,8 @@
#if SHOW_DIAGNOSTICS
<script src="<<<TemplateData/diagnostics.js>>>"></script>
#endif
<div id="unity-container"
class="unity-desktop"
style="
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
transform: none;
background: {{{ BACKGROUND_FILENAME ? 'url(\'Build/' + BACKGROUND_FILENAME.replace(/'/g, '%27') + '\') center / cover' : BACKGROUND_COLOR }}};
">
<canvas
id="unity-canvas"
style="
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
transform: none;
background: {{{ BACKGROUND_FILENAME ? 'url(\'Build/' + BACKGROUND_FILENAME.replace(/'/g, '%27') + '\') center / cover' : BACKGROUND_COLOR }}};
"
tabindex="-1">
<div id="unity-container" class="unity-desktop">
<canvas id="unity-canvas" tabindex="-1">
</canvas>
<div id="unity-loading-bar">
<div id="unity-logo"></div>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# VRM Downgrader

アプリのURLはこちらです → https://vrm-downgrader.pages.dev/
アプリのURLはこちらです → [https://vrm-downgrader.pages.dev/](https://vrm-downgrader.pages.dev/)

VRM 1.0をVRM 0.0にダウングレードするアプリケーションを開発しています。

Expand Down

0 comments on commit 75b927c

Please sign in to comment.