2019-06-12 04:29:21 +00:00
|
|
|
|
//注意:live2d_path参数应使用绝对路径
|
2018-12-17 16:01:42 +00:00
|
|
|
|
const live2d_path = "https://cdn.jsdelivr.net/gh/stevenjoezhang/live2d-widget/";
|
2019-06-12 04:29:21 +00:00
|
|
|
|
//const live2d_path = "/live2d-widget/";
|
2018-12-11 11:57:55 +00:00
|
|
|
|
|
2019-06-12 04:29:21 +00:00
|
|
|
|
//加载waifu.css
|
2018-12-11 11:57:55 +00:00
|
|
|
|
$("<link>").attr({href: live2d_path + "waifu.css", rel: "stylesheet", type: "text/css"}).appendTo("head");
|
2018-07-11 07:38:35 +00:00
|
|
|
|
|
2019-06-12 04:29:21 +00:00
|
|
|
|
//加载live2d.min.js
|
2018-07-11 07:38:35 +00:00
|
|
|
|
$.ajax({
|
2018-12-11 11:57:55 +00:00
|
|
|
|
url: live2d_path + "live2d.min.js",
|
|
|
|
|
dataType: "script",
|
2019-06-12 04:21:10 +00:00
|
|
|
|
cache: true
|
2018-07-11 07:38:35 +00:00
|
|
|
|
});
|
|
|
|
|
|
2019-06-12 04:29:21 +00:00
|
|
|
|
//加载waifu-tips.js
|
2018-07-11 07:38:35 +00:00
|
|
|
|
$.ajax({
|
2018-12-11 11:57:55 +00:00
|
|
|
|
url: live2d_path + "waifu-tips.js",
|
2019-01-02 12:36:35 +00:00
|
|
|
|
dataType: "script",
|
2019-06-12 04:21:10 +00:00
|
|
|
|
cache: true
|
2018-07-11 07:38:35 +00:00
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 04:50:22 +00:00
|
|
|
|
//初始化看板娘,会自动加载指定目录下的waifu-tips.json
|
2018-07-11 07:38:35 +00:00
|
|
|
|
$(window).on("load", function() {
|
2018-12-11 11:57:55 +00:00
|
|
|
|
initWidget(live2d_path + "waifu-tips.json", "https://live2d.fghrsh.net/api");
|
2018-07-11 07:38:35 +00:00
|
|
|
|
});
|
2019-06-12 04:29:21 +00:00
|
|
|
|
//initWidget第一个参数为waifu-tips.json的路径
|
2018-11-03 10:52:03 +00:00
|
|
|
|
//第二个参数为api地址(无需修改)
|
2018-07-11 07:38:35 +00:00
|
|
|
|
//api后端可自行搭建,参考https://github.com/fghrsh/live2d_api
|