Can anyone validate this code and tell me wats wrong pls. The 1st part of transition and transform method ain't working. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can anyone validate this code and tell me wats wrong pls. The 1st part of transition and transform method ain't working.

div{ width: 50px; height: 50px; background-color: #8BC34A; transition: width 1.5s linear; -webkit-transition: width 3s ease-in ; transform: rotate(30deg) translate(80px); -webkit-transform: rotate(30deg) translate(80px); color:white; } div:hover { transform: scale(2,2) rotate(45deg) translate(80px); -webkit-transform: scale(2,2) rotate(45deg) translate(80px); background-color: red; }

27th Oct 2017, 11:13 AM
function vince () { alert ( "PLATINUM");}vince ();
function vince () { alert ( "PLATINUM");}vince (); - avatar
5 Answers
+ 1
Thnx Daniel. figured it out
28th Oct 2017, 9:44 AM
function vince () { alert ( "PLATINUM");}vince ();
function vince () { alert ( "PLATINUM");}vince (); - avatar
0
Please, share your entire code and explain your problem
28th Oct 2017, 9:30 AM
Daniel
Daniel - avatar
0
Hi, I create a code in the playground with the code you posted. https://code.sololearn.com/WEVPHMzUhuqJ/# I thing that is working, but I don't know what's your goal.
28th Oct 2017, 3:42 PM
Isaac Salcedo
Isaac Salcedo - avatar
0
Thnx man. That's it.
28th Oct 2017, 5:51 PM
function vince () { alert ( "PLATINUM");}vince ();
function vince () { alert ( "PLATINUM");}vince (); - avatar
0
your welcome
28th Oct 2017, 6:05 PM
Isaac Salcedo
Isaac Salcedo - avatar