-
Notifications
You must be signed in to change notification settings - Fork 0
phase-4 #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| @@ -0,0 +1,42 @@ | |||
| fetch("books.json") | |||
| .then((response) => response.json()) | |||
| .then((books) => { | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
بهتر بود از async await استفاده کنین
| const img = document.createElement("img"); | ||
| img.src = book.image; | ||
| img.alt = book.name; | ||
| img.style.width = "200px"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
از rem بجای پیکسل استفاده کنین
| const article = document.querySelector("article"); | ||
| article.style.width = "100%"; | ||
| article.style.display = "grid"; | ||
| article.style.gridTemplateColumns = "1fr 1fr 1fr 1fr"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
اینارو با flex
و flex wrap هم میشد زد در موردش بخونین خوبه
|
|
||
| &:hover { | ||
| transform: translateY(-4px); | ||
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rem از استفاد کنین
| background-color: var(--color-card); | ||
| border: 1px solid var(--color-border); | ||
| border-radius: 1rem; | ||
| padding: 1rem; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rem
|
اسکرین شات از خروجی نهایی توی پی ار بزارین |
No description provided.