mirror of
https://github.com/stevenjoezhang/live2d-widget.git
synced 2024-11-22 12:39:59 +08:00
New feature: Show toggle button after hiding the widget
This commit is contained in:
parent
2281944609
commit
05cc012374
@ -23,10 +23,7 @@ console.log(`
|
||||
* https://www.fghrsh.net/post/123.html
|
||||
*/
|
||||
|
||||
function initWidget(waifuPath = "/waifu-tips.json", apiPath = "") {
|
||||
if (screen.width <= 768 || (localStorage.getItem("waifu-display") && new Date().getTime() - localStorage.getItem("waifu-display") <= 86400000)) {
|
||||
return;
|
||||
}
|
||||
function loadWidget(waifuPath, apiPath) {
|
||||
localStorage.removeItem("waifu-display");
|
||||
sessionStorage.removeItem("waifu-text");
|
||||
$("body").append(`<div id="waifu">
|
||||
@ -42,13 +39,14 @@ function initWidget(waifuPath = "/waifu-tips.json", apiPath = "") {
|
||||
<span class="fa fa-lg fa-times"></span>
|
||||
</div>
|
||||
</div>`);
|
||||
$("#waifu").show().animate({ bottom: 0 }, 3000);
|
||||
|
||||
function registerEventListener() {
|
||||
$("#waifu-tool .fa-comment").click(showHitokoto);
|
||||
$("#waifu-tool .fa-paper-plane").click(function() {
|
||||
var s = document.createElement("script");
|
||||
document.body.appendChild(s);
|
||||
s.src = "https://galaxymimi.com/js/asteroids.js";
|
||||
s.src = "https://cdn.jsdelivr.net/gh/GalaxyMimi/CDN/asteroids.js";
|
||||
});
|
||||
$("#waifu-tool .fa-user-circle").click(loadOtherModel);
|
||||
$("#waifu-tool .fa-street-view").click(loadRandModel);
|
||||
@ -65,6 +63,7 @@ function initWidget(waifuPath = "/waifu-tips.json", apiPath = "") {
|
||||
showMessage("愿你有一天能与重要的人重逢。", 2000, 11);
|
||||
$("#waifu").animate({ bottom: -500 }, 3000, function() {
|
||||
$("#waifu").hide();
|
||||
$("#waifu-toggle").show().animate({ "margin-left": -50 }, 1000);
|
||||
});
|
||||
});
|
||||
var re = /x/;
|
||||
@ -238,3 +237,33 @@ function initWidget(waifuPath = "/waifu-tips.json", apiPath = "") {
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function initWidget(waifuPath = "/waifu-tips.json", apiPath = "") {
|
||||
if (screen.width <= 768) return;
|
||||
$("body").append(`<div id="waifu-toggle" style="margin-left: -100px;">
|
||||
<span>看板娘</span>
|
||||
</div>`);
|
||||
$("#waifu-toggle").hover(function() {
|
||||
$("#waifu-toggle").animate({ "margin-left": -30 }, 500);
|
||||
}, function() {
|
||||
$("#waifu-toggle").animate({ "margin-left": -50 }, 500);
|
||||
}).click(function() {
|
||||
$("#waifu-toggle").animate({ "margin-left": -100 }, 1000, function() {
|
||||
$("#waifu-toggle").hide();
|
||||
});
|
||||
if ($("#waifu-toggle").attr("first-time")) {
|
||||
loadWidget(waifuPath, apiPath);
|
||||
$("#waifu-toggle").attr("first-time", false);
|
||||
}
|
||||
else {
|
||||
localStorage.removeItem("waifu-display");
|
||||
$("#waifu").show().animate({ bottom: 0 }, 3000);
|
||||
}
|
||||
});
|
||||
if (localStorage.getItem("waifu-display") && new Date().getTime() - localStorage.getItem("waifu-display") <= 86400000) {
|
||||
$("#waifu-toggle").attr("first-time", true).css({ "margin-left": -50 });
|
||||
}
|
||||
else {
|
||||
loadWidget(waifuPath, apiPath);
|
||||
}
|
||||
}
|
||||
|
20
waifu.css
20
waifu.css
@ -1,13 +1,27 @@
|
||||
#waifu-toggle {
|
||||
position: fixed;
|
||||
writing-mode: vertical-rl;
|
||||
bottom: 10px;
|
||||
left: 0px;
|
||||
background-color: #fa0;
|
||||
color: #fff;
|
||||
border-radius: 5px;
|
||||
padding: 5px;
|
||||
font-size: 12px;
|
||||
width: 60px;
|
||||
cursor: pointer;
|
||||
}
|
||||
#waifu {
|
||||
position: fixed;
|
||||
bottom: -3px;
|
||||
bottom: -1000px;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
line-height: 0;
|
||||
transition: bottom .3s ease-in-out;
|
||||
transition: transform .3s ease-in-out;
|
||||
transform: translateY(3px);
|
||||
}
|
||||
#waifu:hover {
|
||||
bottom: 0;
|
||||
transform: translateY(0);
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
#waifu {
|
||||
|
Loading…
Reference in New Issue
Block a user