mirror of
https://github.com/caojiezi2003/live2d-widget.git
synced 2024-11-10 04:49:47 +00:00
27 lines
839 B
JavaScript
27 lines
839 B
JavaScript
$("<link>").attr({href: "https://www.example.com/path/to/waifu.css", rel: "stylesheet", type: "text/css"}).appendTo('head');
|
||
//waifu.css的绝对路径
|
||
|
||
$.ajax({
|
||
url: 'https://www.example.com/path/to/live2d.min.js',
|
||
dataType:"script",
|
||
cache: true,
|
||
async: false
|
||
});
|
||
//live2d.min.js的绝对路径
|
||
|
||
$.ajax({
|
||
url: 'https://www.example.com/path/to/waifu-tips.js',
|
||
dataType:"script",
|
||
cache: true,
|
||
async: false
|
||
});
|
||
//waifu-tips.js的绝对路径
|
||
|
||
// 初始化看板娘,会自动加载指定目录下的 waifu-tips.json
|
||
$(window).on("load", function() {
|
||
initWidget("https://www.example.com/path/to/waifu-tips.json", "https://live2d.fghrsh.net/api");
|
||
});
|
||
//initWidget第一个参数为waifu-tips.json的绝对路径
|
||
//第二个参数为api地址(无需修改)
|
||
//api后端可自行搭建,参考https://github.com/fghrsh/live2d_api
|