live2d-widget/README.md

190 lines
10 KiB
Markdown
Raw Normal View History

2019-02-11 14:39:40 +08:00
# Live2D Widget
2018-07-11 15:38:35 +08:00
2019-12-26 01:37:11 +08:00
![](https://forthebadge.com/images/badges/built-with-love.svg)
![](https://forthebadge.com/images/badges/uses-html.svg)
![](https://forthebadge.com/images/badges/made-with-javascript.svg)
![](https://forthebadge.com/images/badges/contains-cat-gifs.svg)
![](https://forthebadge.com/images/badges/powered-by-electricity.svg)
![](https://forthebadge.com/images/badges/makes-people-smile.svg)
2023-06-10 15:37:13 +08:00
[English](README.en.md)
2019-09-28 00:29:46 +08:00
2023-06-10 15:37:13 +08:00
## 特性
2023-07-14 10:16:09 +08:00
在網頁中添加 Live2D 看板娘。兼容 PJAX支持無刷新加載。
2018-07-11 15:38:35 +08:00
2020-06-23 16:41:26 +08:00
<img src="assets/screenshot-2.png" width="280"><img src="assets/screenshot-3.png" width="280"><img src="assets/screenshot-1.png" width="270">
2018-07-11 15:38:35 +08:00
2023-07-14 10:16:09 +08:00
(注:以上人物模型僅供展示之用,本倉庫並不包含任何模型。)
2019-03-25 10:54:43 +08:00
2023-07-14 10:16:09 +08:00
你也可以查看示例網頁:
2022-10-21 10:21:30 +08:00
- 在 [米米的博客](https://zhangshuqiao.org) 的左下角可查看效果
2023-07-14 10:16:09 +08:00
- [demo.html](https://mi.js.org/live2d-widget/demo/demo.html),展現基礎功能
- [login.html](https://mi.js.org/live2d-widget/demo/login.html),仿 NPM 的登陸界面
2019-03-25 10:54:43 +08:00
2023-06-10 15:37:13 +08:00
## 使用
2019-01-02 20:36:35 +08:00
2023-07-14 10:16:09 +08:00
如果你是小白,或者只需要最基礎的功能,那麼只用將這一行代碼加入 html 頁面的 `head``body` 中,即可加載看板娘:
2019-01-02 20:36:35 +08:00
```xml
2022-05-21 02:40:56 +08:00
<script src="https://fastly.jsdelivr.net/gh/stevenjoezhang/live2d-widget@latest/autoload.js"></script>
2019-01-02 20:36:35 +08:00
```
2023-07-14 10:16:09 +08:00
添加代碼的位置取決於你的網站的構建方式。例如,如果你使用的是 [Hexo](https://hexo.io),那麼需要在主題的模版文件中添加以上代碼。對於用各種模版引擎生成的頁面,修改方法類似。
如果網站啟用了 PJAX由於看板娘不必每頁刷新需要注意將該腳本放到 PJAX 刷新區域之外。
2019-01-02 20:36:35 +08:00
2023-07-14 10:16:09 +08:00
**但是!我們強烈推薦自己進行配置,讓看板娘更加適合你的網站! **
如果你有興趣自己折騰的話,請看下面的詳細說明。
2019-01-02 20:36:35 +08:00
2023-06-10 15:37:13 +08:00
## 配置
2022-10-20 19:21:38 +08:00
2023-07-14 10:16:09 +08:00
你可以對照 `autoload.js` 的源碼查看可選的配置項目。 `autoload.js` 會自動加載三個文件:`waifu.css``live2d.min.js` 和 `waifu-tips.js``waifu-tips.js` 會創建 `initWidget` 函數,這就是加載看板娘的主函數。 `initWidget` 函數接收一個 Object 類型的參數,作為看板娘的配置。以下是配置選項:
2022-10-20 19:21:38 +08:00
2023-07-14 10:16:09 +08:00
| 選項 | 類型 | 默認值 | 說明 |
2022-10-20 19:21:38 +08:00
| - | - | - | - |
2023-07-14 10:16:09 +08:00
| `waifuPath` | `string` | `https://fastly.jsdelivr.net/gh/stevenjoezhang/live2d-widget@latest/waifu-tips.json` | 看板娘資源路徑,可自行修改 |
| `apiPath` | `string` | `https://live2d.fghrsh.net/api/` | API 路徑,可選參數 |
| `cdnPath` | `string` | `https://fastly.jsdelivr.net/gh/fghrsh/live2d_api/` | CDN 路徑,可選參數 |
| `tools` | `string[]` | 見 `autoload.js` | 加載的小工具按鈕,可選參數 |
2022-10-20 19:21:38 +08:00
2023-07-14 10:16:09 +08:00
其中,`apiPath` 和 `cdnPath` 兩個參數設置其中一項即可。 `apiPath` 是後端 API 的 URL可以自行搭建並增加模型需要修改的內容比較多此處不再贅述可以參考 [live2d_api](https://github.com/fghrsh/live2d_api)。而 `cdnPath` 則是通過 jsDelivr 這樣的 CDN 服務加載資源,更加穩定。
2022-10-20 19:21:38 +08:00
2023-07-14 10:16:09 +08:00
## 自定義
2022-10-20 19:21:38 +08:00
2023-07-14 10:16:09 +08:00
如果以上「配置」部分提供的選項還不足以滿足你的需求,那麼你可以自己進行修改。本倉庫的目錄結構如下:
2022-10-20 19:21:38 +08:00
2023-07-14 10:16:09 +08:00
- `src/waifu-tips.js` 包含了按鈕和對話框的邏輯;
- `waifu-tips.js` 是由 `src/waifu-tips.js` 自動打包生成的,不建議直接修改;
- `waifu-tips.json` 中定義了觸發條件(`selector`CSS 選擇器)和触發時顯示的文字(`text`
- `waifu.css` 是看板娘的樣式表。
2022-10-20 19:21:38 +08:00
2023-07-14 10:16:09 +08:00
`waifu-tips.json` 中默認的 CSS 選擇器規則是對 Hexo 的 [NexT 主題](http://github.com/next-theme/hexo-theme-next) 有效的,為了適用於你自己的網頁,可能需要自行修改,或增加新內容。
**警告:`waifu-tips.json` 中的內容可能不適合所有年齡段,或不宜在工作期間訪問。在使用時,請自行確保它們是合適的。 **
2022-10-20 19:21:38 +08:00
2023-07-14 10:16:09 +08:00
要在本地部署本項目的開發測試環境,你需要安裝 Node.js 和 npm然後執行以下命令
2022-10-20 19:21:38 +08:00
```bash
git clone https://github.com/stevenjoezhang/live2d-widget.git
npm install
npm run build
```
2023-07-14 10:16:09 +08:00
如果有任何疑問,歡迎提 Issue。如果有任何修改建議歡迎提 Pull Request。
2022-10-20 19:21:38 +08:00
2023-06-10 15:37:13 +08:00
## 部署
2022-10-20 19:21:38 +08:00
2023-07-14 10:16:09 +08:00
在本地完成了修改後,你可以將修改後的項目部署在服務器上,或者通過 CDN 加載,以便在網頁中使用。
2022-10-20 19:21:38 +08:00
2023-06-10 15:37:13 +08:00
### 使用 CDN
2019-06-13 14:42:07 +08:00
2023-07-14 10:16:09 +08:00
要自定義有關內容,可以把這個倉庫 Fork 一份,然後把修改後的內容通過 git push 到你的倉庫中。這時,使用方法對應地變為
2019-06-13 14:42:07 +08:00
```xml
2022-05-21 02:40:56 +08:00
<script src="https://fastly.jsdelivr.net/gh/username/live2d-widget@latest/autoload.js"></script>
2019-06-13 14:42:07 +08:00
```
2023-07-14 10:16:09 +08:00
將此處的 `username` 替換為你的 GitHub 用戶名。為了使 CDN 的內容正常刷新,需要創建新的 git tag 並推送至 GitHub 倉庫中,否則此處的 `@latest` 仍然指向更新前的文件。此外 CDN 本身存在緩存,因此改動可能需要一定的時間生效。相關文檔:
2020-04-20 13:45:27 +08:00
- [Git Basics - Tagging](https://git-scm.com/book/en/v2/Git-Basics-Tagging)
2022-10-21 10:37:03 +08:00
- [Managing releases in a repository](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository)
2019-06-13 14:42:07 +08:00
2019-01-02 20:36:35 +08:00
### Self-host
2019-04-11 13:21:57 +08:00
2023-07-14 10:16:09 +08:00
你也可以直接把這些文件放到服務器上,而不是通過 CDN 加載。
2019-06-13 14:42:07 +08:00
2023-07-14 10:16:09 +08:00
- 如果你能夠通過 `ssh` 連接你的主機,請把 Fork 並修改後的代碼倉庫克隆到服務器上。
- 如果你的主機無法用 `ssh` 連接(例如一般的虛擬主機),請在本地修改好代碼後,通過 `ftp` 等方式將文件上傳到主機的網站的目錄下。
- 如果你是通過 Hexo 等工具部署的靜態博客,請把本項目的代碼放在博客源文件目錄下(例如 `source` 目錄)。重新部署博客時,相關文件就會自動上傳到對應的路徑下。為了避免這些文件被 Hexo 插件錯誤地修改,可能需要設置 `skip_render`
2018-12-11 19:57:55 +08:00
2023-07-14 10:16:09 +08:00
這樣,整個項目就可以通過你的域名訪問了。不妨試試能否正常地通過瀏覽器打開 `autoload.js``live2d.min.js` 等文件,並確認這些文件的內容是完整和正確的。
一切正常的話,接下來修改 `autoload.js` 中的常量 `live2d_path``live2d-widget` 這一目錄的 URL 即可。比如說,如果你能夠通過
2018-12-11 19:57:55 +08:00
```
2020-05-20 19:52:23 +08:00
https://example.com/path/to/live2d-widget/live2d.min.js
2018-12-11 19:57:55 +08:00
```
2023-07-14 10:16:09 +08:00
訪問到 `live2d.min.js`,那麼就把 `live2d_path` 的值修改為
2018-12-11 19:57:55 +08:00
```
2020-05-20 19:52:23 +08:00
https://example.com/path/to/live2d-widget/
2018-07-11 15:38:35 +08:00
```
2023-07-14 10:16:09 +08:00
路徑末尾的 `/` 一定要加上。
完成後,在你要添加看板娘的界面加入
2018-12-11 19:57:55 +08:00
```xml
2020-05-20 19:52:23 +08:00
<script src="https://example.com/path/to/live2d-widget/autoload.js"></script>
2018-07-11 15:38:35 +08:00
```
2023-07-14 10:16:09 +08:00
就可以加載了。
2018-07-11 15:38:35 +08:00
2023-07-14 10:16:09 +08:00
## 鳴謝
2019-09-28 00:29:46 +08:00
2022-11-13 00:11:11 +08:00
<a href="https://www.browserstack.com/">
<picture>
<source media="(prefers-color-scheme: dark)" height="80" srcset="https://d98b8t1nnulk5.cloudfront.net/production/images/layout/logo-header.png?1469004780">
<source media="(prefers-color-scheme: light)" height="80" srcset="https://live.browserstack.com/images/opensource/browserstack-logo.svg">
<img alt="BrowserStack Logo" height="80" src="https://live.browserstack.com/images/opensource/browserstack-logo.svg">
</picture>
</a>
2020-06-24 15:06:11 +08:00
2023-07-14 10:16:09 +08:00
> 感謝 BrowserStack 容許我們在真實的瀏覽器中測試此項目。
2020-06-24 15:06:11 +08:00
> Thanks to [BrowserStack](https://www.browserstack.com/) for providing the infrastructure that allows us to test in real browsers!
2022-11-13 00:11:11 +08:00
<a href="https://www.jsdelivr.com">
<picture>
<source media="(prefers-color-scheme: dark)" height="80" srcset="https://raw.githubusercontent.com/jsdelivr/jsdelivr-media/master/white/svg/jsdelivr-logo-horizontal.svg">
<source media="(prefers-color-scheme: light)" height="80" srcset="https://raw.githubusercontent.com/jsdelivr/jsdelivr-media/master/default/svg/jsdelivr-logo-horizontal.svg">
<img alt="jsDelivr Logo" height="80" src="https://raw.githubusercontent.com/jsdelivr/jsdelivr-media/master/default/svg/jsdelivr-logo-horizontal.svg">
</picture>
</a>
2020-06-24 15:06:11 +08:00
2023-07-14 10:16:09 +08:00
> 感謝 jsDelivr 提供的 CDN 服務。
2020-06-24 15:06:11 +08:00
> Thanks jsDelivr for providing public CDN service.
2019-12-22 10:55:12 +08:00
2023-07-14 10:16:09 +08:00
代碼自這篇博文魔改而來:
2019-12-29 00:52:13 +08:00
https://www.fghrsh.net/post/123.html
2018-07-11 15:38:35 +08:00
2023-07-14 10:16:09 +08:00
感謝 [一言](https://hitokoto.cn) 提供的語句接口。
2022-10-20 21:09:09 +08:00
2023-07-14 10:16:09 +08:00
點擊看板娘的紙飛機按鈕時,會出現一個彩蛋,這來自於 [WebsiteAsteroids](http://www.websiteasteroids.com)。
2019-12-26 11:13:42 +08:00
2023-06-10 15:37:13 +08:00
## 更多
2019-12-26 11:13:42 +08:00
2023-07-14 10:16:09 +08:00
更多內容可以參考:
2022-10-21 10:37:03 +08:00
https://nocilol.me/archives/lab/add-dynamic-poster-girl-with-live2d-to-your-blog-02
2019-12-04 20:17:40 +08:00
https://github.com/xiazeyu/live2d-widget.js
2019-03-25 10:54:43 +08:00
https://github.com/summerscar/live2dDemo
2018-07-11 15:38:35 +08:00
2023-07-14 10:16:09 +08:00
關於後端 API 模型:
2018-11-14 01:28:01 +08:00
https://github.com/xiazeyu/live2d-widget-models
https://github.com/xiaoski/live2d_models_collection
2018-11-03 18:52:03 +08:00
2023-07-14 10:16:09 +08:00
除此之外,還有桌面版本:
2019-03-25 10:54:43 +08:00
https://github.com/amorist/platelet
2020-07-31 15:13:35 +08:00
https://github.com/akiroz/Live2D-Widget
https://github.com/zenghongtu/PPet
https://github.com/LikeNeko/L2dPetForMac
2019-03-25 10:54:43 +08:00
2021-05-08 02:02:52 +08:00
以及 Wallpaper Engine
2020-12-03 10:45:38 +08:00
https://github.com/guansss/nep-live2d
2023-07-14 10:16:09 +08:00
## 許可證
2019-09-28 00:29:46 +08:00
2019-01-21 01:53:34 +08:00
Released under the GNU General Public License v3
http://www.gnu.org/licenses/gpl-3.0.html
2023-07-14 10:16:09 +08:00
本倉庫並不包含任何模型,用作展示的所有 Live2D 模型、圖片、動作數據等版權均屬於其原作者,僅供研究學習,不得用於商業用途。
2019-12-30 00:21:00 +08:00
2023-07-14 10:16:09 +08:00
Live2D 官方網站:
2019-12-30 11:56:11 +08:00
https://www.live2d.com/en/
https://live2d.github.io
2023-07-14 10:16:09 +08:00
Live2D Cubism Core は Live2D Proprietary Software License で提供しています。
2019-12-30 11:56:11 +08:00
https://www.live2d.com/eula/live2d-proprietary-software-license-agreement_en.html
2023-07-14 10:16:09 +08:00
Live2D Cubism Components は Live2D Open Software License で提供しています。
2019-12-30 11:56:11 +08:00
http://www.live2d.com/eula/live2d-open-software-license-agreement_en.html
> The terms and conditions do prohibit modification, but obfuscating in `live2d.min.js` would not be considered illegal modification.
https://community.live2d.com/discussion/140/webgl-developer-licence-and-javascript-question
2023-07-14 10:16:09 +08:00
## 更新日誌
2019-12-30 00:21:00 +08:00
2023-07-14 10:16:09 +08:00
2018年10月31日由 fghrsh 提供的原 API 停用,請更新至新地址。參考文章:
2019-12-30 00:21:00 +08:00
https://www.fghrsh.net/post/170.html
2023-07-14 10:16:09 +08:00
2020年1月1日起本項目不再依賴於 jQuery。
2022-10-20 19:21:38 +08:00
2023-07-14 10:16:09 +08:00
2022年11月1日起本項目不再需要用戶單獨加載 Font Awesome。