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

uwuzu v1.3.4 new_planet

This commit is contained in:
Daichimarukana
2024-03-26 22:48:57 +09:00
parent e0b3b93414
commit ea4ca882da
92 changed files with 3192 additions and 1567 deletions
+24 -1
View File
@@ -1,4 +1,4 @@
$(document).on('click', '.mini_irobtn', function(event) {
$(document).on('click', '.mini_irobtn', function (event) {
event.preventDefault();
mother = $(this).parent();
mother2 = $(mother).parent();
@@ -7,4 +7,27 @@ $(document).on('click', '.mini_irobtn', function(event) {
$(mother2).next('.nsfw_main').removeClass('nsfw_main');
$(mother2).hide();
});
$(document).on('click', '#ueuse_image', function (event) {
var imgLink = $(this).attr('src');
var modal = $('#Big_ImageModal');
var modalMain = $('.modal-content');
var modalimg_zone = $('#Big_ImageMain');
$(modalimg_zone).attr('src',imgLink);
modal.show();
modalMain.addClass("slideUp");
modalMain.removeClass("slideDown");
modal.on('click', function() {
modalMain.removeClass("slideUp");
modalMain.addClass("slideDown");
window.setTimeout(function(){
modal.hide();
}, 150);
});
});