live2d-widget/autoload.js

63 lines
2.0 KiB
JavaScript
Raw Normal View History

// 注意live2d_path 参数应使用绝对路径
2022-05-20 18:40:56 +00:00
const live2d_path = "https://fastly.jsdelivr.net/gh/stevenjoezhang/live2d-widget@latest/";
2019-06-12 04:29:21 +00:00
//const live2d_path = "/live2d-widget/";
2018-12-11 11:57:55 +00:00
// 封装异步加载资源的方法
function loadExternalResource(url, type) {
return new Promise((resolve, reject) => {
let tag;
2018-07-11 07:38:35 +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
// 加载 waifu.css live2d.min.js waifu-tips.js
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(() => {
2022-10-20 11:21:38 +00:00
// 配置参数的具体用法见 README.md
2020-02-09 13:01:56 +00:00
initWidget({
waifuPath: live2d_path + "waifu-tips.json",
2020-05-21 01:49:21 +00:00
//apiPath: "https://live2d.fghrsh.net/api/",
2022-10-20 03:40:13 +00:00
cdnPath: "https://fastly.jsdelivr.net/gh/fghrsh/live2d_api/",
tools: ["hitokoto", "asteroids", "switch-model", "switch-texture", "photo", "info", "quit"]
2020-02-09 13:01:56 +00:00
});
});
}
2019-07-17 16:04:33 +00:00
console.log(`
__,.ヘヽ. / ,
', !--i / /´
' L/
/ , /| , , ',
/ /-/ L_ ! i
7 '-!| |
!,/7 '0' ´0i| |
|." _ ,,,, / |./ |
'| i.,,__ _,. / .i |
'| | / k__/レ', . |
| |/i 〈|/ i ,. | i |
.|/ / ! |
kヽ> _,. /!
!'〈//´', '7'ーr'
'ヽL__|___i,___,ンレ|
-,/ |___./
'ー' !_,.:
`);