2019-12-26 03:58:27 +00:00
|
|
|
|
// 注意:live2d_path 参数应使用绝对路径
|
2018-12-17 16:01:42 +00:00
|
|
|
|
const live2d_path = "https://cdn.jsdelivr.net/gh/stevenjoezhang/live2d-widget/";
|
2019-06-12 04:29:21 +00:00
|
|
|
|
//const live2d_path = "/live2d-widget/";
|
2018-12-11 11:57:55 +00:00
|
|
|
|
|
2019-12-26 03:58:27 +00:00
|
|
|
|
// 封装异步加载资源的方法
|
2019-12-04 12:59:27 +00:00
|
|
|
|
function loadExternalResource(url, type) {
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
let tag;
|
2018-07-11 07:38:35 +00:00
|
|
|
|
|
2019-12-04 12:59:27 +00:00
|
|
|
|
if (type === "css") {
|
|
|
|
|
tag = document.createElement("link");
|
|
|
|
|
tag.rel = "stylesheet";
|
|
|
|
|
tag.href = url;
|
|
|
|
|
}
|
|
|
|
|
else if (type === "js") {
|
|
|
|
|
tag = document.createElement("script");
|
|
|
|
|
tag.src = url;
|
|
|
|
|
}
|
|
|
|
|
if (tag) {
|
|
|
|
|
tag.onload = () => resolve(url);
|
|
|
|
|
tag.onerror = () => reject(url);
|
|
|
|
|
document.head.appendChild(tag);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2018-07-11 07:38:35 +00:00
|
|
|
|
|
2019-12-26 03:58:27 +00:00
|
|
|
|
// 加载 waifu.css live2d.min.js waifu-tips.js
|
2020-01-27 04:07:54 +00:00
|
|
|
|
if (screen.width >= 768) {
|
|
|
|
|
Promise.all([
|
|
|
|
|
loadExternalResource(live2d_path + "waifu.css", "css"),
|
|
|
|
|
loadExternalResource(live2d_path + "live2d.min.js", "js"),
|
|
|
|
|
loadExternalResource(live2d_path + "waifu-tips.js", "js")
|
|
|
|
|
]).then(() => {
|
2020-02-09 13:01:56 +00:00
|
|
|
|
initWidget({
|
|
|
|
|
waifuPath: live2d_path + "waifu-tips.json",
|
|
|
|
|
apiPath: "https://live2d.fghrsh.net/api",
|
|
|
|
|
cdnPath: "https://cdn.jsdelivr.net/gh/fghrsh/live2d_api"
|
|
|
|
|
});
|
2020-01-27 04:07:54 +00:00
|
|
|
|
});
|
|
|
|
|
}
|
2019-12-28 16:52:13 +00:00
|
|
|
|
// initWidget 第一个参数为 waifu-tips.json 的路径,第二个参数为 API 地址
|
|
|
|
|
// API 后端可自行搭建,参考 https://github.com/fghrsh/live2d_api
|
2019-12-26 03:58:27 +00:00
|
|
|
|
// 初始化看板娘会自动加载指定目录下的 waifu-tips.json
|
2019-07-17 16:04:33 +00:00
|
|
|
|
|
|
|
|
|
console.log(`
|
|
|
|
|
く__,.ヘヽ. / ,ー、 〉
|
|
|
|
|
\ ', !-─‐-i / /´
|
|
|
|
|
/`ー' L//`ヽ、
|
|
|
|
|
/ /, /| , , ',
|
|
|
|
|
イ / /-‐/ i L_ ハ ヽ! i
|
|
|
|
|
レ ヘ 7イ`ト レ'ァ-ト、!ハ| |
|
|
|
|
|
!,/7 '0' ´0iソ| |
|
|
|
|
|
|.从" _ ,,,, / |./ |
|
|
|
|
|
レ'| i>.、,,__ _,.イ / .i |
|
|
|
|
|
レ'| | / k_7_/レ'ヽ, ハ. |
|
|
|
|
|
| |/i 〈|/ i ,.ヘ | i |
|
|
|
|
|
.|/ / i: ヘ! \ |
|
|
|
|
|
kヽ>、ハ _,.ヘ、 /、!
|
|
|
|
|
!'〈//`T´', \ `'7'ーr'
|
|
|
|
|
レ'ヽL__|___i,___,ンレ|ノ
|
|
|
|
|
ト-,/ |___./
|
|
|
|
|
'ー' !_,.:
|
|
|
|
|
`);
|