-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
36 lines (28 loc) · 1.13 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Simulated data - replace with dynamic data from your backend
const featuredProducts = [
{ name: 'Vintage Dress', price: 50, imageUrl: 'dress.jpg' },
{ name: 'Designer Handbag', price: 100, imageUrl: 'handbag.jpg' },
// Add more products as needed
];
document.addEventListener('DOMContentLoaded', function () {
const featuredProductsSection = document.getElementById('featured-products');
featuredProducts.forEach(product => {
const productCard = createProductCard(product);
featuredProductsSection.appendChild(productCard);
});
});
function createProductCard(product) {
const card = document.createElement('div');
card.classList.add('product-card');
const image = document.createElement('img');
image.src = product.imageUrl;
image.alt = product.name;
const productName = document.createElement('h3');
productName.textContent = product.name;
const price = document.createElement('p');
price.textContent = `$${product.price}`;
card.appendChild(image);
card.appendChild(productName);
card.appendChild(price);
return card;
}