Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kush-x7/product-preview-card-component

Frontend Mentor challenge solution
https://github.com/kush-x7/product-preview-card-component

animation css html5

Last synced: 10 days ago
JSON representation

Frontend Mentor challenge solution

Awesome Lists containing this project

README

        

# Frontend Mentor - Product preview card component solution

![Design preview for the Product preview card component coding challenge](./design/desktop-preview.jpg)

This is a solution to the [Product preview card component challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/product-preview-card-component-GO7UmttRfa). Frontend Mentor challenges help you improve your coding skills by building realistic projects.

---

### Links

- Solution URL: [click here](https://www.frontendmentor.io/solutions/product-preview-card-component-animations-iXU0xXhos5)
- Live Site URL: [Click here](https://kush-card.netlify.app/)

---

### What I learned

**1. Learned how to show different images using css**

```html


card_image
card_image

```

```css
.mobileImage {
display: none;
}

@media screen and (min-width: 600px) {
.mobileImage {
display: block;
}
.desktopImage {
display: none;
}
}
```

**2. Leaned animation using Css**

---

### Useful resources

- [Box Shadow Generator](https://getcssscan.com/css-box-shadow-examples) - This helped me with the box shadows.
- [Animation](https://animista.net/play/text/tracking-in/tracking-in-expand) - This is an amazing site for css animation.