Update docs

This commit is contained in:
Mimi 2020-12-03 10:45:38 +08:00
parent 26dfd56fc3
commit 1a95807c82
2 changed files with 5 additions and 3 deletions

View File

@ -139,12 +139,15 @@ https://github.com/akiroz/Live2D-Widget
https://github.com/zenghongtu/PPet https://github.com/zenghongtu/PPet
https://github.com/LikeNeko/L2dPetForMac https://github.com/LikeNeko/L2dPetForMac
以及 Wallpaper Engine
https://github.com/guansss/nep-live2d
## 许可证 License ## 许可证 License
Released under the GNU General Public License v3 Released under the GNU General Public License v3
http://www.gnu.org/licenses/gpl-3.0.html http://www.gnu.org/licenses/gpl-3.0.html
本仓库中涉及的所有 Live2D 模型、图片、动作数据等版权均属于其原作者,仅供研究学习,不得用于商业用途。 本仓库并不包含任何模型,用作展示的所有 Live2D 模型、图片、动作数据等版权均属于其原作者,仅供研究学习,不得用于商业用途。
Live2D 官方网站: Live2D 官方网站:
https://www.live2d.com/en/ https://www.live2d.com/en/

View File

@ -66,7 +66,6 @@ body {
position: relative; position: relative;
background-color: #999; background-color: #999;
clip-path: circle(120px at center); clip-path: circle(120px at center);
-webkit-clip-path: circle(120px at center);
} }
#cover { #cover {
position: absolute; position: absolute;
@ -172,7 +171,7 @@ body {
window.addEventListener("load", () => { window.addEventListener("load", () => {
"use strict"; "use strict";
if (!CSS.supports("clip-path", "circle(120px at center)") && !CSS.supports("-webkit-clip-path", "circle(120px at center)")) { if (!CSS.supports("clip-path", "circle(120px at center)")) {
document.getElementById("stage").innerHTML = '<img src="../assets/screenshot-1.png">'; document.getElementById("stage").innerHTML = '<img src="../assets/screenshot-1.png">';
return; return;
} }