
1 个回答

Hi Prasad,Sorry for this issue you are encountering. Please try with below piece of code and let us know if this helps.
<apex:page id="page">
<style>
.logo {
-ms-transform: rotate(90deg); /* IE 9 */
-webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
transform: rotate(90deg);
}
img:hover
{
cursor: default;
transform: rotate(360deg);
transition: all 0.3s ease-in-out 0s;
}
</style>
<apex:image styleClass="logo" url="https://vigneshb1-dev-ed--c.ap2.visual.force.com/img/seasonLogos/2016_spring.png" id="rotate"/>
</apex:page>
Regards,
Nagendra