User:TheMcr/monobook.js: Difference between revisions
Boobpedia - Encyclopedia of big boobs
Jump to navigationJump to search
No edit summary |
No edit summary Tag: Manual revert |
||
| Line 1: | Line 1: | ||
// Add a style element to the page for the hover effect | |||
document.addEventListener('DOMContentLoaded', function () { | document.addEventListener('DOMContentLoaded', function () { | ||
var | 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); | |||
} | |||
}); | }); | ||
Revision as of 22:46, 1 April 2025
// 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);
});