User:TheMcr/monobook.js: Difference between revisions
Boobpedia - Encyclopedia of big boobs
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
// | // Add a style element to the page for the hover effect | ||
var | 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); | |||
}); | |||
document.head.appendChild( | |||
Revision as of 22:37, 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);
});