1
0
mirror of https://github.com/Daichimarukana/uwuzu.git synced 2026-06-05 11:34:41 +00:00

uwuzu version 1.2.23

This commit is contained in:
daichimarukana
2023-09-16 23:19:30 +09:00
parent 4c588a6903
commit e8ddcb9921
56 changed files with 1705 additions and 468 deletions
+1 -1
View File
@@ -2,5 +2,5 @@
window.onload = function(){
var ele = document.getElementsByTagName("body")[0];
var n = Math.floor(Math.random() * 3); // 3枚の画像がある場合
ele.style.backgroundImage = "url(img/titleimg/"+n+".png)";
ele.style.backgroundImage = "url(/img/titleimg/"+n+".png)";
}
+10
View File
@@ -0,0 +1,10 @@
$(document).on('click', '.mini_irobtn', function(event) {
event.preventDefault();
mother = $(this).parent();
mother2 = $(mother).parent();
$(mother2).next('.nsfw_main').children().removeClass('block');
$(mother2).next('.nsfw_main').children().addClass('clear');
$(mother2).next('.nsfw_main').removeClass('nsfw_main');
$(mother2).hide();
});