Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kush-x7/product-preview-card-component
- Owner: kush-x7
- Created: 2022-11-28T01:37:32.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-28T03:19:37.000Z (almost 2 years ago)
- Last Synced: 2023-11-15T12:37:52.518Z (about 1 year ago)
- Topics: animation, css, html5
- Language: CSS
- Homepage: https://kush-card.netlify.app/
- Size: 205 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
``````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.