Design comparison
Solution retrospective
Open to any/all feedback! One thing I struggled with was changing the color of the picture.
I ended up using the filter property on the image but the color, compared to the design, still looks a bit off.
To this project, I added:
- Bounce animation on load
- Color pulsing text on accented word
Community feedback
- @AdrianoEscarabotePosted almost 2 years ago
Hello Keith, how are you? I truly loved your project's outcome, however I have some advice that I hope you'll find useful:
The hero image has a color slightly different from the Figma design, if you want to match the color you can reach this using
mix-blend-mode
withmix-blend-mode: multiply;
. The multiply will make the image blend the div background and the opacity will make the image less evident and improve the blend between image/purple div. See the code below:img { mix-blend-mode: multiply; opacity: 0.8; }
You can read this content which is explaining these effects with mix-blend-mode: click here
To remove the scrollbar do this:
body { padding: 1.25rem; /* margin: 1.25rem; */ }
The remainder is excellent.
I hope it's useful. š
Marked as helpful1@Grill3dCheesePosted almost 2 years agoHey! @AdrianoEscarabote - thank you so much for this feedback and explaining the mix-blend-mode! So that's how you do it?! I was struggling with this part and really appreciate your help!
1
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord