Skip to main content
1 réponse
  1. 3 avr. 2018, 09:04
    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

     
0/9000