1
0

update three-vrm-3

This commit is contained in:
2024-08-04 17:56:35 +09:00
parent 2fb62a68ac
commit f5fa7a9a0c
58 changed files with 12078 additions and 6 deletions

1
min-ts/dist/CNAME vendored Normal file
View File

@ -0,0 +1 @@
vrm.syui.ai

94
min-ts/dist/css/style.css vendored Normal file
View File

@ -0,0 +1,94 @@
body {
margin: 0;
overflow: hidden;
}
progress {
width: 100%;
height:8px;
position: absolute;
border-radius: 0px;
}
::-webkit-progress-bar {
border-radius: 0px;
background-color: #e6e6fa;
}
::-webkit-progress-value {
background-color: #4682b4;
}
::-moz-progress-bar {
border-radius: 0px;
background-color: #e6e6fa;
}
::-moz-progress-value {
background-color: #4682b4;
}
::-ms-progress-bar {
border-radius: 0px;
background-color: #e6e6fa;
}
::-ms-progress-value {
background-color: #4682b4;
}
div#menu {
padding: 20px;
border-bottom:solid 1px #ccc;
}
button {
border: none;
margin: 0;
padding: 0 20px 0 20px;
width: auto;
overflow: visible;
background: transparent;
color: inherit;
font: inherit;
line-height: normal;
-webkit-font-smoothing: inherit;
-moz-osx-font-smoothing: inherit;
appearance: none;
-webkit-appearance: none;
cursor: pointer;
user-select: none;
}
a {
text-decoration: none;
color: #000;
}
a:hover{
/* color: #fff700; */
color: #847e00;
}
footer {
border-top:solid 1px #ccc;
padding: 20px 0 20px 0;
font-size:20px;
text-align: center;
}
span.menu-nav button#nav {
display: none;
}
@media screen and (max-width:1000px) {
span#nav-mobile {
display: none;
}
span.menu-nav button#nav {
right:0;
display: block;
position: absolute;
top:20px;
}
}

BIN
min-ts/dist/favicon.ico vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
min-ts/dist/img/0.hdr vendored Normal file

Binary file not shown.

10744
min-ts/dist/img/1.hdr vendored Normal file

File diff suppressed because one or more lines are too long

BIN
min-ts/dist/img/2.hdr vendored Normal file

Binary file not shown.

BIN
min-ts/dist/img/og.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 KiB

21
min-ts/dist/index.html vendored Normal file
View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>ai</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta property="og:url" content="https://vrm.syui.ai">
<meta property="og:title" content="ai/vrm">
<meta property="og:description" content="ai[vrm] model viewer">
<meta property="og:image" content="/img/og.png">
<link rel="icon" href="/favicon.ico"/>
<link rel="stylesheet" href="/css/style.css"/>
<link rel="stylesheet" href="https://syui.ai/bower_components/icomoon/style.css" />
<link rel="stylesheet" href="https://syui.ai/bower_components/font-awesome/css/all.min.css" />
<script src="main.js"></script>
</head>
<body>
<progress value="0" max="100" id="progressBar"></progress>
<div id="canvas"></div>
<footer>© syui</footer>
</body>
</html>