Is it possible to transform and use transition effects on one html tag at the same time. | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

Is it possible to transform and use transition effects on one html tag at the same time.

27th Oct 2017, 9:15 AM
function vince () { alert ( "PLATINUM");}vince ();
function vince () { alert ( "PLATINUM");}vince (); - avatar
2 Réponses
+ 2
Yes, it's possible. .obj { transition: transform 5s; } .obj:hover { -webkit-transform: rotate(90deg); transform: rotate(90deg); } https://code.sololearn.com/WsodR5C4aoie/?ref=app
27th Oct 2017, 11:03 AM
Calviղ
Calviղ - avatar
+ 2
Thnx I later did a Lil digging a found out how it's done.
27th Oct 2017, 12:59 PM
function vince () { alert ( "PLATINUM");}vince ();
function vince () { alert ( "PLATINUM");}vince (); - avatar