add file
This commit is contained in:
1
dist/CNAME
vendored
Normal file
1
dist/CNAME
vendored
Normal file
@ -0,0 +1 @@
|
||||
vrm.syui.ai
|
94
dist/css/style.css
vendored
Normal file
94
dist/css/style.css
vendored
Normal 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
dist/favicon.ico
vendored
Normal file
BIN
dist/favicon.ico
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
BIN
dist/img/0.hdr
vendored
Normal file
BIN
dist/img/0.hdr
vendored
Normal file
Binary file not shown.
10744
dist/img/1.hdr
vendored
Normal file
10744
dist/img/1.hdr
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
dist/img/2.hdr
vendored
Normal file
BIN
dist/img/2.hdr
vendored
Normal file
Binary file not shown.
BIN
dist/img/og.png
vendored
Normal file
BIN
dist/img/og.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 306 KiB |
44
dist/index.html
vendored
Normal file
44
dist/index.html
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
<!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="menu">
|
||||
<span class="menu-top">
|
||||
<button id='btn-ai'><a href="/"><span class="icon-ai"></span></a></button>
|
||||
</span>
|
||||
<span class="menu-left">
|
||||
<button id='btn-moon'><span class="icon-moon"></span></button>
|
||||
<button id='btn-jump'><i class="fa-solid fa-dove"></i></button>
|
||||
<button id='btn-run'><i class="fa-solid fa-person-running"></i></button>
|
||||
</span>
|
||||
<span class="menu-right" id="nav-mobile">
|
||||
<button id='btn-user'><i class="fa-solid fa-user"></i></button>
|
||||
<button id='btn-grid'><i class="fa-solid fa-border-none"></i></button>
|
||||
<button id='btn-sandar'><i class="fa-solid fa-location-dot"></i></button>
|
||||
<button id='btn-tera'><i class="fa-solid fa-earth-americas"></i></button>
|
||||
</span>
|
||||
<span class="menu-nav">
|
||||
<button id='nav'><i class="fa-solid fa-bars"></i></button>
|
||||
</span>
|
||||
<!--
|
||||
<button id='btn-cloud'><i class="fa-solid fa-cloud"></i></button>
|
||||
<button id='btn-sword'><i class="fa-solid fa-fan"></i></button>
|
||||
-->
|
||||
</div>
|
||||
<div id="canvas"></div>
|
||||
<footer>© syui</footer>
|
||||
</body>
|
||||
</html>
|
1
dist/vrma
vendored
Submodule
1
dist/vrma
vendored
Submodule
Submodule dist/vrma added at 12ce521873
Reference in New Issue
Block a user