Design comparison
Solution retrospective
This was my fifth challenge and I tried to do it in a single session and submit it as is to test myself. I feel like I need to tweak it a little more, so I'll definitely continue to work on it. I think I could have used <picture> like in the product preview challenge, but opted to try something different this time. Also, for some reason, the image overlay layer is not quite like the design, I used the accent color and opacity for it, but its not exact.
Community feedback
- @correlucasPosted about 2 years ago
👾Hello @zp021, congratulations on your solution!
Nice code and nice solution! You did a good job here putting everything together. I’ve some suggestions for you:
To get closer to
overlay effect
on the photo as the Figma Design its better you usemix-blend-mode
. All you need is thediv
under theimage
with thisbackground-color: hsl(277, 64%, 61%);
and applymix-blend-mode: multiply
andopacity: 80%
on theimg
orpicture
selector to activate the overlay blending the image with the color of the div. See the code bellow:img { mix-blend-mode: multiply; opacity: 80%; }
Here's a good article explaining these effects with mix-blend-mode:
https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode
✌️ I hope this helps you and happy coding!
0@zp021Posted about 2 years ago@correlucas Thanks Lucas, that it! I was sitting there, thinking how great it would be if I could change blend mode like you can in photoshop. Guess I should have googled more, didn't know it was available in css. Also, after looking at your profile it inspired me to add something to the solution I was working on, so I added a dark mode to the Order summary challenge. It's not the best I'm sure, but it works... kind of :) https://www.frontendmentor.io/solutions/my-solution-for-the-order-summary-component-challenge-dark-mode-F8U1FjkgzY
0@correlucasPosted about 2 years ago@zp021 I liked a lots also this other challenge, amazing work, keep it up Zarko
0
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