2018-12-17 16:01:42 +00:00
|
|
|
|
const live2d_path = "https://cdn.jsdelivr.net/gh/stevenjoezhang/live2d-widget/";
|
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
|
|
|
|
//waifu.css的绝对路径
|
|
|
|
|
|
|
|
|
|
$.ajax({
|
2018-12-11 11:57:55 +00:00
|
|
|
|
url: live2d_path + "live2d.min.js",
|
|
|
|
|
dataType: "script",
|
2018-07-11 07:38:35 +00:00
|
|
|
|
cache: true,
|
|
|
|
|
async: false
|
|
|
|
|
});
|
|
|
|
|
//live2d.min.js的绝对路径
|
|
|
|
|
|
|
|
|
|
$.ajax({
|
2018-12-11 11:57:55 +00:00
|
|
|
|
url: live2d_path + "waifu-tips.js",
|
2018-07-11 07:38:35 +00:00
|
|
|
|
dataType:"script",
|
|
|
|
|
cache: true,
|
|
|
|
|
async: false
|
|
|
|
|
});
|
|
|
|
|
//waifu-tips.js的绝对路径
|
|
|
|
|
|
2018-12-17 16:01:42 +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
|
|
|
|
});
|
2018-11-03 10:52:03 +00:00
|
|
|
|
//initWidget第一个参数为waifu-tips.json的绝对路径
|
|
|
|
|
//第二个参数为api地址(无需修改)
|
2018-07-11 07:38:35 +00:00
|
|
|
|
//api后端可自行搭建,参考https://github.com/fghrsh/live2d_api
|