live2d-widget/demo/login.html

274 lines
6.6 KiB
HTML
Raw Normal View History

2019-03-25 02:54:43 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
2019-07-30 17:43:28 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2019-03-25 02:54:43 +00:00
<title>看板娘登陆平台</title>
2021-05-07 18:02:52 +00:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5/dist/css/bootstrap.min.css">
2019-07-30 17:43:28 +00:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/font-awesome/css/font-awesome.min.css">
2019-06-13 05:37:09 +00:00
<script src="../live2d.min.js"></script>
2019-03-25 02:54:43 +00:00
<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;
}
2021-06-27 12:23:09 +00:00
#stage button {
2019-03-25 02:54:43 +00:00
position: absolute;
width: 2em;
height: 2em;
border-radius: 50%;
}
#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;
2020-04-18 06:13:16 +00:00
height: 300px;
width: 300px;
2019-03-25 02:54:43 +00:00
}
#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">
2020-04-18 06:13:16 +00:00
<span style="color: cyan;">MIMI</span><span style="color: white;">POWERED</span>
2019-03-25 02:54:43 +00:00
</div>
<div id="detail"></div>
<div id="handle"></div>
</div>
2020-04-18 06:13:16 +00:00
<canvas class="mb-4" id="live2d" width="800" height="800"></canvas>
2019-03-25 02:54:43 +00:00
</div>
2021-06-27 12:23:09 +00:00
<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-refresh"></i></button>
2019-03-25 02:54:43 +00:00
</div>
2021-05-07 18:02:52 +00:00
<h1 class="h3 mb-3 fw-normal">看板娘登陆平台</h1>
2019-03-25 02:54:43 +00:00
<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>
2021-05-07 18:02:52 +00:00
<div class="checkbox mb-4">
2019-03-25 02:54:43 +00:00
<label>
<input type="checkbox" value="remember-me"> 记住我
</label>
</div>
2021-05-07 18:02:52 +00:00
<div class="d-grid">
<button class="btn btn-lg btn-primary" type="submit">登录</button>
</div>
2019-03-25 02:54:43 +00:00
<p class="mt-5 mb-3 text-muted">Copyleft &copy; Mimi 2019</p>
</form>
<script>
2020-05-12 04:32:08 +00:00
/*
* _(:з」∠)_
* 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.
*/
2020-01-20 09:28:22 +00:00
window.addEventListener("load", () => {
2019-03-25 02:54:43 +00:00
"use strict";
2020-12-03 02:45:38 +00:00
if (!CSS.supports("clip-path", "circle(120px at center)")) {
2020-01-20 09:28:22 +00:00
document.getElementById("stage").innerHTML = '<img src="../assets/screenshot-1.png">';
2019-03-25 02:54:43 +00:00
return;
}
2021-06-27 12:23:09 +00:00
const apiPath = "https://live2d.fghrsh.net/api";
let state = 0, loading = false,
2019-03-25 02:54:43 +00:00
modelId = localStorage.getItem("modelId"),
modelTexturesId = localStorage.getItem("modelTexturesId");
2020-02-10 14:19:28 +00:00
if (modelId === null) {
2019-03-25 02:54:43 +00:00
modelId = 1;
modelTexturesId = 53;
}
loadModel(modelId, modelTexturesId);
function loadModel(modelId, modelTexturesId) {
localStorage.setItem("modelId", modelId);
if (modelTexturesId === undefined) modelTexturesId = 0;
localStorage.setItem("modelTexturesId", modelTexturesId);
2020-01-20 09:28:22 +00:00
loadlive2d("live2d", `${apiPath}/get/?id=${modelId}-${modelTexturesId}`, null);
2019-03-25 02:54:43 +00:00
console.log("live2d", `模型 ${modelId}-${modelTexturesId} 加载完成`);
2020-01-20 09:28:22 +00:00
setTimeout(() => {
coverPosition("80%");
2019-03-25 02:54:43 +00:00
state = 2;
}, 2000);
}
function loadRandModel() {
2020-07-21 15:37:27 +00:00
const modelId = localStorage.getItem("modelId"),
2019-03-25 02:54:43 +00:00
modelTexturesId = localStorage.getItem("modelTexturesId");
2019-12-29 03:14:43 +00:00
fetch(`${apiPath}/rand_textures/?id=${modelId}-${modelTexturesId}`)
.then(response => response.json())
.then(result => {
2019-12-29 06:41:16 +00:00
loadModel(modelId, result.textures.id);
2020-01-20 09:28:22 +00:00
setTimeout(() => {
2019-03-25 02:54:43 +00:00
state = 2;
2020-01-20 09:28:22 +00:00
coverPosition("80%");
2021-06-27 12:23:09 +00:00
loading = false;
2019-03-25 02:54:43 +00:00
}, 1000);
2019-12-29 03:14:43 +00:00
});
2019-03-25 02:54:43 +00:00
}
function loadOtherModel() {
2020-07-21 15:37:27 +00:00
const modelId = localStorage.getItem("modelId");
2019-12-29 03:14:43 +00:00
fetch(`${apiPath}/switch/?id=${modelId}`)
.then(response => response.json())
.then(result => {
2019-12-29 06:41:16 +00:00
loadModel(result.model.id);
2019-12-29 03:14:43 +00:00
});
2019-03-25 02:54:43 +00:00
}
2020-01-20 09:28:22 +00:00
function coverPosition(pos) {
document.getElementById("cover").style.bottom = pos;
}
2021-06-27 12:23:09 +00:00
document.getElementById("info").addEventListener("click", () => {
2019-12-29 03:14:43 +00:00
fetch("https://v1.hitokoto.cn")
.then(response => response.json())
.then(result => {
alert("「" + result.hitokoto + "」——" + result.from);
});
2021-06-27 12:23:09 +00:00
});
2019-03-25 02:54:43 +00:00
2021-06-27 12:23:09 +00:00
document.getElementById("refresh").addEventListener("click", () => {
if (loading) return;
2019-03-25 02:54:43 +00:00
state = 0;
2020-01-20 09:28:22 +00:00
coverPosition("10%");
2021-06-27 12:23:09 +00:00
loading = true;
2019-03-25 02:54:43 +00:00
setTimeout(loadRandModel, 1000);
2021-06-27 12:23:09 +00:00
});
2019-03-25 02:54:43 +00:00
2020-01-20 09:28:22 +00:00
document.getElementById("handle").addEventListener("click", () => {
2020-02-10 14:19:28 +00:00
if (state === 1) {
2019-03-25 02:54:43 +00:00
state = 2;
2020-01-20 09:28:22 +00:00
coverPosition("80%");
2019-03-25 02:54:43 +00:00
}
2020-02-10 14:19:28 +00:00
else if (state === 2) {
2019-03-25 02:54:43 +00:00
state = 1;
2020-01-20 09:28:22 +00:00
coverPosition("20%");
2019-03-25 02:54:43 +00:00
}
});
2020-01-20 09:28:22 +00:00
document.querySelector("input[type=password]").addEventListener("focus", () => {
2020-02-10 14:19:28 +00:00
if (state === 2) {
2019-03-25 02:54:43 +00:00
state = 1;
2020-01-20 09:28:22 +00:00
coverPosition("20%");
2019-03-25 02:54:43 +00:00
}
2020-01-20 09:28:22 +00:00
});
document.querySelector("input[type=password]").addEventListener("blur", () => {
2020-02-10 14:19:28 +00:00
if (state === 1) {
2019-03-25 02:54:43 +00:00
state = 2;
2020-01-20 09:28:22 +00:00
coverPosition("80%");
2019-03-25 02:54:43 +00:00
}
});
});
</script>
</body>
</html>