Site updated: 2022-11-07 17:29:09

This commit is contained in:
llbzow
2022-11-07 17:29:09 +00:00
parent 393ae22047
commit 267e5f619e
40 changed files with 1891 additions and 20 deletions

View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Live2D 看板娘 / Demo</title>
<style>
#github svg {
transition: all 1s;
fill: #222;
color: #fff;
position: absolute;
top: 0;
right: 0;
border: 0;
width: 80px;
height: 80px;
}
#github:hover svg {
width: 160px;
height: 160px;
}
</style>
</head>
<body>
<a id="github" href="https://github.com/stevenjoezhang/live2d-widget" target="_blank" title="Visit the open-source code on GitHub!">
<svg viewBox="0 0 250 250" aria-hidden="true">
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
<path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" class="octo-arm"></path>
<path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path>
</svg>
</a>
<script src="../autoload.js"></script>
</body>
</html>

View File

@@ -0,0 +1,271 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>看板娘登陆平台</title>
<link rel="stylesheet" href="https://fastly.jsdelivr.net/npm/bootstrap@5/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fastly.jsdelivr.net/npm/@fortawesome/fontawesome-free@6/css/all.min.css">
<script src="../live2d.min.js"></script>
<style>
html, body {
height: 100%;
}
body {
display: flex;
align-items: center;
justify-content: center;
padding-top: 40px;
padding-bottom: 40px;
background-color: #f5f5f5;
}
.form-signin {
width: 100%;
max-width: 330px;
padding: 15px;
margin: 0 auto;
}
.form-signin .checkbox {
font-weight: 400;
}
.form-signin .form-control {
position: relative;
box-sizing: border-box;
height: auto;
padding: 10px;
font-size: 16px;
}
.form-signin .form-control:focus {
z-index: 2;
}
.form-signin input[type=text] {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin input[type=password] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
#stage {
position: relative;
}
#stage img {
width: 100%;
margin-bottom: 20px;
border-radius: 20px;
}
#stage button {
position: absolute;
padding: 0;
}
#inner {
position: relative;
background-color: #999;
clip-path: circle(120px at center);
}
#cover {
position: absolute;
background-color: #CB3837;
width: 100%;
height: 100%;
bottom: 10%;
transition: all 1s;
box-shadow: 0 0 0 5px rgba(0, 0, 0, .1);
}
#text {
position: absolute;
bottom: 30%;
font-size: 2em;
left: 50%;
transform: translateX(-50%);
opacity: 0.4;
font-weight: bold;
}
#detail {
position: absolute;
background: rgba(255, 255, 255, .1);
width: 100%;
height: 10px;
bottom: 0;
}
#handle {
position: absolute;
background: #ccc;
bottom: -2px;
box-shadow: 0 1px 0 1px rgba(0, 0, 0, .1);
height: 8px;
left: 50%;
margin-left: -15px;
width: 30px;
cursor: pointer;
}
#info {
left: 40px;
bottom: 20px;
}
#refresh {
right: 40px;
bottom: 20px;
}
#live2d {
cursor: grab;
height: 300px;
width: 300px;
}
#live2d:active {
cursor: grabbing;
}
</style>
</head>
<body class="text-center">
<form class="form-signin" action="login.php" method="post">
<div id="stage">
<div id="inner">
<div id="cover">
<div id="text">
<span style="color: cyan;">MIMI</span><span style="color: white;">POWERED</span>
</div>
<div id="detail"></div>
<div id="handle"></div>
</div>
<canvas class="mb-4" id="live2d" width="800" height="800"></canvas>
</div>
<button class="btn btn-link" id="info"><i class="fa fa-lg fa-info"></i></button>
<button class="btn btn-link" id="refresh"><i class="fa fa-lg fa-sync-alt"></i></button>
</div>
<h1 class="h3 mb-3 fw-normal">看板娘登陆平台</h1>
<label for="room" class="sr-only">用户名</label>
<input type="text" name="room" class="form-control" placeholder="用户名" required autofocus>
<label for="pass" class="sr-only">密码</label>
<input type="password" name="pass" class="form-control" placeholder="密码" required>
<div class="checkbox mb-4">
<label>
<input type="checkbox" value="remember-me"> 记住我
</label>
</div>
<div class="d-grid">
<button class="btn btn-lg btn-primary" type="submit">登录</button>
</div>
<p class="mt-5 mb-3 text-muted">Copyleft &copy; Mimi 2019</p>
</form>
<script>
/*
* _(:з」∠)_
* Created by Shuqiao Zhang in 2019.
* https://zhangshuqiao.org
*/
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
window.addEventListener("load", () => {
"use strict";
if (!CSS.supports("clip-path", "circle(120px at center)")) {
document.getElementById("stage").innerHTML = '<img src="../assets/screenshot-1.png">';
return;
}
const apiPath = "https://live2d.fghrsh.net/api";
let state = 0, loading = false,
modelId = localStorage.getItem("modelId"),
modelTexturesId = localStorage.getItem("modelTexturesId");
if (modelId === null) {
modelId = 1;
modelTexturesId = 53;
}
loadModel(modelId, modelTexturesId);
function loadModel(modelId, modelTexturesId) {
localStorage.setItem("modelId", modelId);
if (modelTexturesId === undefined) modelTexturesId = 0;
localStorage.setItem("modelTexturesId", modelTexturesId);
loadlive2d("live2d", `${apiPath}/get/?id=${modelId}-${modelTexturesId}`, null);
console.log("live2d", `模型 ${modelId}-${modelTexturesId} 加载完成`);
setTimeout(() => {
coverPosition("80%");
state = 2;
}, 2000);
}
function loadRandModel() {
const modelId = localStorage.getItem("modelId"),
modelTexturesId = localStorage.getItem("modelTexturesId");
fetch(`${apiPath}/rand_textures/?id=${modelId}-${modelTexturesId}`)
.then(response => response.json())
.then(result => {
loadModel(modelId, result.textures.id);
setTimeout(() => {
state = 2;
coverPosition("80%");
loading = false;
}, 1000);
});
}
function loadOtherModel() {
const modelId = localStorage.getItem("modelId");
fetch(`${apiPath}/switch/?id=${modelId}`)
.then(response => response.json())
.then(result => {
loadModel(result.model.id);
});
}
function coverPosition(pos) {
document.getElementById("cover").style.bottom = pos;
}
document.getElementById("info").addEventListener("click", () => {
fetch("https://v1.hitokoto.cn")
.then(response => response.json())
.then(result => {
alert("「" + result.hitokoto + "」——" + result.from);
});
});
document.getElementById("refresh").addEventListener("click", () => {
if (loading) return;
state = 0;
coverPosition("10%");
loading = true;
setTimeout(loadRandModel, 1000);
});
document.getElementById("handle").addEventListener("click", () => {
if (state === 1) {
state = 2;
coverPosition("80%");
}
else if (state === 2) {
state = 1;
coverPosition("20%");
}
});
document.querySelector("input[type=password]").addEventListener("focus", () => {
if (state === 2) {
state = 1;
coverPosition("20%");
}
});
document.querySelector("input[type=password]").addEventListener("blur", () => {
if (state === 1) {
state = 2;
coverPosition("80%");
}
});
});
</script>
</body>
</html>