MediaWiki:Gadget-BlurImages.js: Difference between revisions
From Jenny Everywhere Wiki
Bongolium500 (talk | contribs) (Created page with "mw.hook('wikipage.content').add(function(){ $('.blur-image').each(function(i, obj) { console.log("in loop"); var img = $(obj).find(".thumbimage"); var width = $(img).width(); var height = $(img).height(); var text = "Click to view. Contains " + $(obj).data("contains") + "."; $(obj).find(".thumbinner").append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").click(function(event){ $(event.target).parent().find("img").css...") |
Bongolium500 (talk | contribs) No edit summary |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
mw.hook('wikipage.content').add(function(){ | mw.hook('wikipage.content').add(function(){ | ||
$('.blur-image').each(function(i, obj) { | $('.blur-image').each(function(i, obj) { | ||
var img = $(obj).find(".thumbimage"); | var img = $(obj).find(".thumbimage"); | ||
var width = $(img).width(); | var width = $(img).width(); | ||
var height = $(img).height(); | var height = $(img).height(); | ||
var text = "Click to view. Contains " + $(obj).data("contains") + "."; | var text = "Click to view. Contains " + $(obj).data("contains") + "."; | ||
$(obj).find(".thumbinner").append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").click(function(event){ | $(obj).find(".thumbinner").append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").prop("title", "Click image to view").click(function(event){ | ||
$(event.target).parent().find("img").css("filter", "none"); | $(event.target).parent().find("img").css("filter", "none"); | ||
$(event.target).remove(); | $(event.target).remove(); | ||
})); | })); | ||
}); | }); | ||
}); | |||
mw.hook('wikipage.content').add(function(){ | |||
$('.blur-gallery').each(function(i, gal) { | |||
var text = "Click to view. May contain " + $(gal).data("contains") + "."; | |||
$(gal).find(".thumb").each(function(i, obj) { | |||
var img = $(obj).find("img"); | |||
var width = $(img).width(); | |||
var height = $(img).height(); | |||
$(obj).find("div").append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").prop("title", "Click image to view").click(function(event){ | |||
$(event.target).parent().find("img").css("filter", "none"); | |||
$(event.target).remove(); | |||
})); | |||
}); | |||
}); | |||
}); | |||
mw.hook('wikipage.content').add(function(){ | |||
$('.pi-theme-blur').each(function(i, box) { | |||
var text = "Click to view. May contain " + "NSFW content" + "."; | |||
$(box).find(".pi-image").each(function(i, obj) { | |||
var img = $(obj).find("img"); | |||
var width = $(img).width(); | |||
var height = $(img).height(); | |||
$(obj).append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").prop("title", "Click image to view").click(function(event){ | |||
$(event.target).parent().find("img").css("filter", "none"); | |||
$(event.target).remove(); | |||
})); | |||
}); | |||
}); | |||
}); | |||
mw.hook('wikipage.content').add(function(){ | |||
if ($(".nsfw-image-page").length) { | |||
var obj = $(".fullImageLink"); | |||
var img = $(obj).find("img"); | |||
var width = $(img).width(); | |||
var height = $(img).height(); | |||
var text = "Click to view. Contains " + $(".nsfw-image-page").data("contains") + "."; | |||
$(obj).append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").prop("title", "Click image to view").click(function(event){ | |||
$(event.target).parent().find("img").css("filter", "none"); | |||
$(event.target).remove(); | |||
})); | |||
} | |||
}); | }); |
Latest revision as of 20:43, 27 July 2024
mw.hook('wikipage.content').add(function(){
$('.blur-image').each(function(i, obj) {
var img = $(obj).find(".thumbimage");
var width = $(img).width();
var height = $(img).height();
var text = "Click to view. Contains " + $(obj).data("contains") + ".";
$(obj).find(".thumbinner").append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").prop("title", "Click image to view").click(function(event){
$(event.target).parent().find("img").css("filter", "none");
$(event.target).remove();
}));
});
});
mw.hook('wikipage.content').add(function(){
$('.blur-gallery').each(function(i, gal) {
var text = "Click to view. May contain " + $(gal).data("contains") + ".";
$(gal).find(".thumb").each(function(i, obj) {
var img = $(obj).find("img");
var width = $(img).width();
var height = $(img).height();
$(obj).find("div").append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").prop("title", "Click image to view").click(function(event){
$(event.target).parent().find("img").css("filter", "none");
$(event.target).remove();
}));
});
});
});
mw.hook('wikipage.content').add(function(){
$('.pi-theme-blur').each(function(i, box) {
var text = "Click to view. May contain " + "NSFW content" + ".";
$(box).find(".pi-image").each(function(i, obj) {
var img = $(obj).find("img");
var width = $(img).width();
var height = $(img).height();
$(obj).append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").prop("title", "Click image to view").click(function(event){
$(event.target).parent().find("img").css("filter", "none");
$(event.target).remove();
}));
});
});
});
mw.hook('wikipage.content').add(function(){
if ($(".nsfw-image-page").length) {
var obj = $(".fullImageLink");
var img = $(obj).find("img");
var width = $(img).width();
var height = $(img).height();
var text = "Click to view. Contains " + $(".nsfw-image-page").data("contains") + ".";
$(obj).append($("<div></div>").text(text).width(width).height(height).addClass("imagecover").prop("title", "Click image to view").click(function(event){
$(event.target).parent().find("img").css("filter", "none");
$(event.target).remove();
}));
}
});