Jump to content

Css3 Animation Code: Rotation 360, Fireworks


Recommended Posts

Posted

Am nevoie si eu de niste coduri pentru animatii in CSS3 ,de exemplu cand dau cu clickul peste imagine sa se roteasca, sa iasa in afara, sa se dea "peste cap" ,cand dai refersh la pagina sa se faca un artificiu alb si sa se faca la loc :-?, cand ating imaginile cu clickul sa se aprind/coloreze incet ,la meniu, dedesubtul scrisului sa apara o linie, dar nu fix langa text, mai depapartat etc..

 

Puteti sa ma ajutati :D //

  • Moderators
Posted

Pentru rotaţie 360 grade cand duci mouse-ul pe el:

 

Folosesti codul

<img class="rotatieimagine" src="ADRESA_CATRE_IMAGINE">
Si adaugi CSS:

.rotatieimagine {
    overflow: hidden;
    transition-duration: 0.8s;
    transition-property: transform;
}
.rotatieimagine:hover {
    transform: rotate(360deg);
}
Rezultat: http://jsfiddle.net/sELBM/
  • Upvote 1

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.