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