User:TheMcr/monobook.js: Difference between revisions

Boobpedia - Encyclopedia of big boobs
Jump to navigationJump to search
No edit summary
Tag: Manual revert
(Blanked the page)
Tag: Blanking
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
// Add a style element to the page for the hover effect
 
document.addEventListener('DOMContentLoaded', function () {
    var style = document.createElement('style');
    style.innerHTML = `
        /* CSS for image hover effect */
        img:hover {
            transform: scale(1.1); /* Grows the image to 110% of its original size */
            transition: transform 0.3s ease; /* Smooth transition */
        }
    `;
    document.head.appendChild(style);
});

Latest revision as of 15:17, 5 April 2025