live2d-widget/autoload.js

29 lines
861 B
JavaScript
Raw Normal View History

2019-06-12 12:29:21 +08:00
//注意live2d_path参数应使用绝对路径
2018-12-18 00:01:42 +08:00
const live2d_path = "https://cdn.jsdelivr.net/gh/stevenjoezhang/live2d-widget/";
2019-06-12 12:29:21 +08:00
//const live2d_path = "/live2d-widget/";
2018-12-11 19:57:55 +08:00
2019-06-12 12:29:21 +08:00
//加载waifu.css
2019-06-13 14:42:07 +08:00
$("<link>").attr({ href: live2d_path + "waifu.css", rel: "stylesheet" }).appendTo("head");
2018-07-11 15:38:35 +08:00
2019-06-12 12:29:21 +08:00
//加载live2d.min.js
2018-07-11 15:38:35 +08:00
$.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
});
2019-06-12 12:29:21 +08:00
//加载waifu-tips.js
2018-07-11 15:38:35 +08:00
$.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
});
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
});
2019-06-12 12:29:21 +08:00
//initWidget第一个参数为waifu-tips.json的路径
2018-11-03 18:52:03 +08:00
//第二个参数为api地址无需修改
2018-07-11 15:38:35 +08:00
//api后端可自行搭建参考https://github.com/fghrsh/live2d_api