User:TheMcr/monobook.js
Boobpedia - Encyclopedia of big boobs
Jump to navigationJump to search
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
document.addEventListener('DOMContentLoaded', function () {
var images = document.querySelectorAll('img'); // Select all images on the page
images.forEach(function (image) {
// On mouse enter (hover)
image.addEventListener('mouseenter', function () {
image.style.transition = 'transform 0.3s ease, box-shadow 0.3s ease'; // Smooth transition for scaling and shadow
image.style.transform = 'scale(1.1)'; // Increase image size by 10%
image.style.boxShadow = '0px 4px 10px rgba(0, 0, 0, 0.3)'; // Add a subtle shadow
});
// On mouse leave (hover out)
image.addEventListener('mouseleave', function () {
image.style.transform = 'scale(1)'; // Reset to original size
image.style.boxShadow = 'none'; // Remove the shadow
});
});
});