mirror of
https://github.com/caojiezi2003/live2d-widget.git
synced 2024-11-10 04:49:47 +00:00
29 lines
877 B
JavaScript
29 lines
877 B
JavaScript
//注意:live2d_path参数应使用绝对路径
|
||
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");
|
||
|
||
//加载live2d.min.js
|
||
$.ajax({
|
||
url: live2d_path + "live2d.min.js",
|
||
dataType: "script",
|
||
cache: true
|
||
});
|
||
|
||
//加载waifu-tips.js
|
||
$.ajax({
|
||
url: live2d_path + "waifu-tips.js",
|
||
dataType: "script",
|
||
cache: true
|
||
});
|
||
|
||
//初始化看板娘,会自动加载指定目录下的waifu-tips.json
|
||
$(window).on("load", function() {
|
||
initWidget(live2d_path + "waifu-tips.json", "https://live2d.fghrsh.net/api");
|
||
});
|
||
//initWidget第一个参数为waifu-tips.json的路径
|
||
//第二个参数为api地址(无需修改)
|
||
//api后端可自行搭建,参考https://github.com/fghrsh/live2d_api
|