مدیاویکی:Common.js
از ویکییاد
نکته: پس از انتشار ممکن است برای دیدن تغییرات نیاز باشد که حافظهٔ نهانی مرورگر خود را پاک کنید.
- فایرفاکس / سافاری: کلید Shift را نگه دارید و روی دکمهٔ Reload کلیک کنید، یا کلیدهای Ctrl-F5 یا Ctrl-R را با هم فشار دهید (در رایانههای اپل مکینتاش کلیدهای ⌘-R)
- گوگل کروم: کلیدهای Ctrl+Shift+R را با هم فشار دهید (در رایانههای اپل مکینتاش کلیدهای ⌘-Shift-R)
- Edge: کلید Ctrl را نگهدارید و روی دکمهٔ Refresh کلیک کنید، یا کلیدهای Ctrl-F5 را با هم فشار دهید
/**
* Gallery boxes: use the image as full-cover background instead of <img> tag
* Runs after page is loaded
*/
document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll('.gallerybox').forEach(function (box) {
// Find the <img> inside this box
const img = box.querySelector('img.mw-file-element');
if (img && img.src) {
// Set background using the exact src of the thumbnail
box.style.backgroundImage = 'url(' + img.src + ')';
box.style.backgroundSize = 'cover';
box.style.backgroundPosition = 'center center';
box.style.backgroundRepeat = 'no-repeat';
// Hide the original <img> tag
img.style.display = 'none';
}
});
});
