Home | History | Bugs/Updates |
<img src="myimage.jpg" alt="myimage.jpg" title="myimage" width="270" height="185" style="display: block; margin-left: auto; margin-right: auto; text-align: center;"/>
Then in Options>Configure output>Custom>Code for insertion into head tag, add:<img class="rttoenlarge" src="myimage.jpg" alt="myimage.jpg" title="myimage" width="270" height="185" style="display: block; margin-left: auto; margin-right: auto; text-align: center;"/>
For more information, see transform and Using CSS transforms<style>
img.rttoenlarge{
text-align: center;
transform-origin: top left;
transform: scale(1);
transition: 1.5s ease-in-out;
}
img.rttoenlarge:hover {
transform-origin: top left;
transform: scale(4);
position: relative;
z-index: 100;
}
</style>