Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenjoezhang committed Dec 3, 2020
1 parent 26dfd56 commit 1a95807
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,15 @@ https://github.com/akiroz/Live2D-Widget
https://github.com/zenghongtu/PPet
https://github.com/LikeNeko/L2dPetForMac

以及 Wallpaper Engine:
https://github.com/guansss/nep-live2d

## 许可证 License

Released under the GNU General Public License v3
http://www.gnu.org/licenses/gpl-3.0.html

本仓库中涉及的所有 Live2D 模型、图片、动作数据等版权均属于其原作者,仅供研究学习,不得用于商业用途。
本仓库并不包含任何模型,用作展示的所有 Live2D 模型、图片、动作数据等版权均属于其原作者,仅供研究学习,不得用于商业用途。

Live2D 官方网站:
https://www.live2d.com/en/
Expand Down
3 changes: 1 addition & 2 deletions demo/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
position: relative;
background-color: #999;
clip-path: circle(120px at center);
-webkit-clip-path: circle(120px at center);
}
#cover {
position: absolute;
Expand Down Expand Up @@ -172,7 +171,7 @@ <h1 class="h3 mb-3 font-weight-normal">看板娘登陆平台</h1>
window.addEventListener("load", () => {
"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">';
return;
}
Expand Down

0 comments on commit 1a95807

Please sign in to comment.