JhonatanErosa / Project-2_Portfolio.io

Other
1 stars 0 forks source link

Transition idea. #10

Open IsmaelMastronardi opened 1 year ago

IsmaelMastronardi commented 1 year ago

A good transition to add would be to make the social media icons bigger on hover. also, I noticed that the "get my resume" button doesn't have the same effects as the same as other buttons, I think you could fix it by changing its class.

jcmunav63 commented 1 year ago

Hi, Jhonatan: Good job so far! It would be nice to add some transitions in your app.

Try to use transitions in your images. For instance, you can use something like... .grow { transition: all 0.2s ease-in-out; } .grow:hover { transform: scale(1.1); }

And you can also try to grow your H1 text using...

delay {

  font-size: 40px;
  transition-property: font-size;
  transition-duration: 2s;
  transition-delay: 1s;

}

delay: hover {

  font-size: 48px;

}

Good work!

jcmunav63 commented 1 year ago

Hi Jhonatan:

I just want to remember you that it would be good to make you social media links work. Try to fix them so they work well. Remember to use https:// in the href property and also remember that the M logo refers to MEDIUM magazine and the victory logo (the hand) refers to WELLFOUND (former ANGELLIST).

And also try to ALIGN the M logo with the rest of the social media logos.

Good luck!