Egg, I think you are asking how to achieve the Simple Gallery zooming of the entire image effect.
This is a separate, simpler CSS effect.
Use the CSS script in the Website Head:
<style>
.scaled {
transform: scale(1.0);
border: 2px solid red;
transition: 1.2s ease-in-out;
}
.scaled:hover {
transform: scale(2.0);
border: 4px solid blue;
}
</style>
Add Name htmlclass="scaled" to any object, including text.
I added 'border' just for the hell of it to show tweaks are not that scary.
If you are asking about zoom and pan, that is more complex.
Acorn
Bookmarks