Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenjoezhang committed Jun 13, 2019
1 parent bef89cb commit 2281944
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 11 deletions.
22 changes: 16 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jQuery and font-awesome is required for this plugin. You can add this to `<head>

## 使用 Usage

### Using CDN
你可以直接这样使用:
```xml
<script src="https://cdn.jsdelivr.net/gh/stevenjoezhang/live2d-widget/autoload.js"></script>
Expand All @@ -41,8 +40,18 @@ jQuery and font-awesome is required for this plugin. You can add this to `<head>
**但是!我们强烈推荐自己进行配置,否则很多功能是不完整的,并且可能产生问题!**
如果你有兴趣自己折腾的话,请看下面的详细说明。

### Using CDN

如果要自定义有关内容,可以把这个仓库Fork一份,然后进行修改。这时,使用方法对应地变为
```xml
<script src="https://cdn.jsdelivr.net/gh/username/live2d-widget/autoload.js"></script>
```
`username`替换为你的GitHub用户名即可。

### Self-host

你也可以直接把这些文件放到服务器上,而不是通过CDN加载。

- 如果你可以通过ssh访问你的主机,请把整个项目克隆到服务器上。执行:
```bash
cd /path/to/your/webroot
Expand All @@ -53,25 +62,24 @@ git clone https://github.com/stevenjoezhang/live2d-widget.git
- 如果你是通过Hexo等工具部署的静态博客,请选择`Download ZIP`,然后解压到本地的博客目录下,例如`source`下与`_posts`同级的目录。重新部署博客时,相关文件就会自动上传到对应的目录。(还需要在Hexo主题相关的swig或ejs模版中正确配置路径,才可以加载)

这样,整个项目就可以通过你的服务器IP或者域名从公网访问了。你可以试试能否正常地通过浏览器打开`autoload.js``live2d.min.js`等文件。**(最好还要确定一下这些文件的内容是正确的,有时由于字符集的问题,文件中可能出现乱码;此时需要重新下载)**
如果没有问题,接下来需要修改一些配置。(你也可以先在本地完成这一步骤,再上传到服务器上)
修改autoload.js中的参数`live2d_path``live2d-widget`这一文件夹在公网上的路径。比如说,如果你可以通过
如果没有问题,接下来需要修改一些配置。(需要通过服务器上的`vim``emacs`,cPanel文件管理器等工具修改;你也可以先在本地完成这一步骤,再上传到服务器上)
修改`autoload.js`中的参数`live2d_path``live2d-widget`这一文件夹在公网上的路径。比如说,如果你可以通过
```
https://www.example.com/path/to/live2d-widget/live2d.min.js
```
访问到`live2d.min.js`,那么就把`live2d_path`的值修改为
```
https://www.example.com/path/to/live2d-widget/
```
路径末尾的`/`一定要加上。具体可以参考该文件内的注释
路径末尾的`/`一定要加上。具体可以参考`autoload.js`内的注释
完成后,在你要添加看板娘的界面加入
```xml
<script src="https://www.example.com/path/to/live2d-widget/autoload.js"></script>
```
就可以加载了。

`waifu-tips.json`中包含了触发条件(`selector`,选择器)和触发时显示的文字(`text`)。源文件是对Hexo的NexT主题有效的,为了适用于你自己的网页,也需要自行修改,或增加新内容。
**警告:作者不对包括但不限于`waifu-tips.json``waifu-tips.js`中的内容负责,请自行确保它们是合适的。(许可证中的`AS IS`描述)**
如果有任何疑问,欢迎提ISSUE。如果有任何修改建议,欢迎提PR。
**警告:作者不对包括但不限于`waifu-tips.json``waifu-tips.js`文件中的内容负责,请自行确保它们是合适的。**

## 更多 More
Live2D官方网站:
Expand All @@ -83,6 +91,8 @@ https://live2d.github.io
- 解压并进入目录,执行`npm install`
- 执行`npm run build-sample`

如果有任何疑问,欢迎提Issue。如果有任何修改建议,欢迎提PR。

## 鸣谢 Credits
代码自这篇博文魔改而来:
https://www.fghrsh.net/post/123.html
Expand Down
2 changes: 1 addition & 1 deletion autoload.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const live2d_path = "https://cdn.jsdelivr.net/gh/stevenjoezhang/live2d-widget/";
//const live2d_path = "/live2d-widget/";

//加载waifu.css
$("<link>").attr({href: live2d_path + "waifu.css", rel: "stylesheet", type: "text/css"}).appendTo("head");
$("<link>").attr({ href: live2d_path + "waifu.css", rel: "stylesheet" }).appendTo("head");

//加载live2d.min.js
$.ajax({
Expand Down
8 changes: 4 additions & 4 deletions waifu-tips.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ function initWidget(waifuPath = "/waifu-tips.json", apiPath = "") {
$("#waifu-tool .fa-street-view").click(loadRandModel);
$("#waifu-tool .fa-camera-retro").click(function() {
showMessage("照好了嘛,是不是很可爱呢?", 6000, 9);
window.Live2D.captureName = "photo.png";
window.Live2D.captureFrame = true;
Live2D.captureName = "photo.png";
Live2D.captureFrame = true;
});
$("#waifu-tool .fa-info-circle").click(function() {
window.open("https://github.com/stevenjoezhang/live2d-widget");
open("https://github.com/stevenjoezhang/live2d-widget");
});
$("#waifu-tool .fa-times").click(function() {
localStorage.setItem("waifu-display", new Date().getTime());
Expand Down Expand Up @@ -206,7 +206,7 @@ function initWidget(waifuPath = "/waifu-tips.json", apiPath = "") {
localStorage.setItem("modelId", modelId);
if (modelTexturesId === undefined) modelTexturesId = 0;
localStorage.setItem("modelTexturesId", modelTexturesId);
loadlive2d("live2d", `${apiPath}/get/?id=${modelId}-${modelTexturesId}`, console.log("live2d", `模型 ${modelId}-${modelTexturesId} 加载完成`));
loadlive2d("live2d", `${apiPath}/get/?id=${modelId}-${modelTexturesId}`, console.log(`Live2D 模型 ${modelId}-${modelTexturesId} 加载完成`));
}

function loadRandModel() {
Expand Down

0 comments on commit 2281944

Please sign in to comment.