Spaces:
Running
Running
File size: 14,250 Bytes
2b691e7 36ba6a1 2b691e7 |
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 |
// PalletPal Pro - Main JavaScript
// Product data
const products = [
{
id: 1,
name: "Standard 48x40\" New",
category: "new",
price: 12.99,
image: "http://static.photos/industry/640x480/1",
description: "Industry standard GMA pallet, heat-treated hardwood construction.",
specs: ["48\" x 40\" x 6\"", "2,500 lbs capacity", "ISPM-15 certified"]
},
{
id: 2,
name: "Heavy Duty Block Pallet",
category: "new",
price: 24.99,
image: "http://static.photos/industry/640x480/2",
description: "Four-way entry block pallet for heavy loads and rack storage.",
specs: ["48\" x 40\" x 6.5\"", "5,000 lbs capacity", "4-way entry"]
},
{
id: 3,
name: "Premium Used Grade A",
category: "used",
price: 6.99,
image: "http://static.photos/industry/640x480/3",
description: "Top-quality refurbished pallets, repaired to like-new condition.",
specs: ["48\" x 40\" x 6\"", "2,200 lbs capacity", "Heat treated"]
},
{
id: 4,
name: "Export/Heat Treated",
category: "export",
price: 15.99,
image: "http://static.photos/industry/640x480/4",
description: "ISPM-15 compliant pallets for international shipping.",
specs: ["48\" x 40\" x 6\"", "IPPC marked", "Global compliant"]
},
{
id: 5,
name: "Custom Size Pallet",
category: "custom",
price: 35.00,
image: "http://static.photos/craft/640x480/5",
description: "Built to your exact specifications and requirements.",
specs: ["Any size up to 96\"", "Custom capacity", "Your choice of wood"]
},
{
id: 6,
name: "Lightweight Economy",
category: "new",
price: 8.99,
image: "http://static.photos/industry/640x480/6",
description: "Cost-effective solution for light to medium loads.",
specs: ["48\" x 40\" x 5.5\"", "1,500 lbs capacity", "Softwood construction"]
}
];
// Testimonials data
const testimonials = [
{
id: 1,
name: "Robert Martinez",
company: "FastTrack Logistics",
role: "Operations Director",
image: "http://static.photos/people/200x200/101",
content: "PalletPal Pro has been our go-to supplier for 5 years. Their quality is consistent, delivery is always on time, and their team genuinely cares about our success.",
rating: 5
},
{
id: 2,
name: "Jennifer Walsh",
company: "Midwest Manufacturing",
role: "Supply Chain Manager",
image: "http://static.photos/people/200x200/102",
content: "The B2B program saved us 30% on pallet costs while eliminating stockouts. Their just-in-time delivery model transformed our warehouse operations.",
rating: 5
},
{
id: 3,
name: "David Kim",
company: "GreenGrocer Distributors",
role: "CEO",
image: "http://static.photos/people/200x200/103",
content: "As a company focused on sustainability, we love that PalletPal Pro shares our values. Their recycled pallet program aligns perfectly with our mission.",
rating: 5
}
];
// Pricing configuration
const pricing = {
standard: { base: 12.99, multiplier: 1 },
heavy: { base: 24.99, multiplier: 1 },
custom: { base: 35.00, multiplier: 1.2 },
used: { base: 6.99, multiplier: 1 },
export: { base: 15.99, multiplier: 1 }
};
const locationMultipliers = {
local: 1,
regional: 1.15,
national: 1.35
};
// DOM Ready
document.addEventListener('DOMContentLoaded', function() {
// Initialize Feather icons
if (typeof feather !== 'undefined') {
feather.replace();
}
// Load products on index page
loadFeaturedProducts();
// Load all products on products page
loadAllProducts();
// Load testimonials
loadTestimonials();
// Setup quote calculator
setupQuoteCalculator();
// Setup product filters
setupProductFilters();
// Setup forms
setupForms();
// Setup scroll animations
setupScrollAnimations();
});
// Load featured products (homepage)
function loadFeaturedProducts() {
const grid = document.getElementById('product-grid');
if (!grid) return;
const featuredProducts = products.slice(0, 3);
grid.innerHTML = featuredProducts.map(product => createProductCard(product)).join('');
if (typeof feather !== 'undefined') {
feather.replace();
}
}
// Load all products (products page)
function loadAllProducts() {
const grid = document.getElementById('all-products-grid');
if (!grid) return;
grid.innerHTML = products.map(product => createProductCard(product)).join('');
if (typeof feather !== 'undefined') {
feather.replace();
}
}
// Create product card HTML
function createProductCard(product) {
return `
<div class="bg-white dark:bg-wood-800 rounded-2xl overflow-hidden shadow-lg border border-wood-100 dark:border-wood-700 hover:shadow-2xl transition-all duration-300 group card-lift" data-category="${product.category}">
<div class="relative h-56 overflow-hidden img-zoom">
<img src="${product.image}" alt="${product.name}" class="w-full h-full object-cover">
<div class="absolute top-4 left-4">
<span class="px-3 py-1 bg-primary-600 text-white text-xs font-semibold rounded-full uppercase tracking-wide">${product.category}</span>
</div>
</div>
<div class="p-6">
<div class="flex items-center justify-between mb-2">
<h3 class="font-display text-xl font-bold">${product.name}</h3>
<span class="text-2xl font-bold text-primary-600">${product.price.toFixed(2)}</span>
</div>
<p class="text-wood-600 dark:text-wood-400 text-sm mb-4">${product.description}</p>
<ul class="space-y-2 mb-6">
${product.specs.map(spec => `
<li class="flex items-center gap-2 text-sm text-wood-500 dark:text-wood-400">
<i data-feather="check" class="w-4 h-4 text-primary-500"></i>
${spec}
</li>
`).join('')}
</ul>
<a href="contact.html" class="w-full py-3 bg-wood-100 dark:bg-wood-700 hover:bg-primary-600 hover:text-white dark:hover:bg-primary-600 text-wood-800 dark:text-wood-100 rounded-xl font-semibold transition-all duration-300 flex items-center justify-center gap-2">
<i data-feather="shopping-cart" class="w-4 h-4"></i>
Request Quote
</a>
</div>
</div>
`;
}
// Load testimonials
function loadTestimonials() {
const grid = document.getElementById('testimonials-grid');
if (!grid) return;
grid.innerHTML = testimonials.map(t => `
<div class="bg-white dark:bg-wood-800 rounded-2xl p-8 shadow-lg border border-wood-100 dark:border-wood-700">
<div class="flex gap-1 mb-4">
${Array(t.rating).fill('<i data-feather="star" class="w-5 h-5 text-secondary-500 fill-current"></i>').join('')}
</div>
<p class="text-wood-600 dark:text-wood-300 mb-6 leading-relaxed">"${t.content}"</p>
<div class="flex items-center gap-4">
<img src="${t.image}" alt="${t.name}" class="w-12 h-12 rounded-full object-cover">
<div>
<div class="font-semibold">${t.name}</div>
<div class="text-sm text-wood-500 dark:text-wood-400">${t.role}, ${t.company}</div>
</div>
</div>
</div>
`).join('');
if (typeof feather !== 'undefined') {
feather.replace();
}
}
// Setup quote calculator
function setupQuoteCalculator() {
const form = document.getElementById('quote-form');
const result = document.getElementById('quote-result');
const priceEl = document.getElementById('quote-price');
if (!form) return;
form.addEventListener('submit', function(e) {
e.preventDefault();
const type = document.getElementById('pallet-type').value;
const quantity = parseInt(document.getElementById('quantity').value) || 1;
const location = document.getElementById('location').value;
const basePrice = pricing[type].base;
const locationMult = locationMultipliers[location];
const volumeDiscount = quantity >= 500 ? 0.85 : quantity >= 100 ? 0.9 : 1;
const total = basePrice * quantity * locationMult * volumeDiscount;
priceEl.textContent = ' + total.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 });
result.classList.remove('hidden');
// Animate the price
animateValue(priceEl, 0, total, 500);
});
}
// Animate number value
function animateValue(element, start, end, duration) {
const range = end - start;
const increment = end > start ? 1 : -1;
const stepTime = Math.abs(Math.floor(duration / (range / 100)));
let current = start;
const timer = setInterval(() => {
current += range / 20;
if ((increment > 0 && current >= end) || (increment < 0 && current <= end)) {
current = end;
clearInterval(timer);
}
element.textContent = ' + current.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 });
}, stepTime);
}
// Submit quote request
function submitQuote() {
const type = document.getElementById('pallet-type').value;
const quantity = document.getElementById('quantity').value;
// Store in sessionStorage for contact form
sessionStorage.setItem('quoteType', type);
sessionStorage.setItem('quoteQuantity', quantity);
window.location.href = 'contact.html?subject=quote';
}
// Setup product filters
function setupProductFilters() {
const buttons = document.querySelectorAll('.filter-btn');
const cards = document.querySelectorAll('[data-category]');
if (!buttons.length) return;
buttons.forEach(btn => {
btn.addEventListener('click', () => {
// Update active state
buttons.forEach(b => {
b.classList.remove('active', 'bg-primary-600', 'text-white');
b.classList.add('bg-white', 'dark:bg-wood-800');
});
btn.classList.add('active', 'bg-primary-600', 'text-white');
btn.classList.remove('bg-white', 'dark:bg-wood-800');
// Filter cards
const filter = btn.dataset.filter;
cards.forEach(card => {
if (filter === 'all' || card.dataset.category === filter) {
card.style.display = 'block';
card.classList.add('animate-scale-in');
} else {
card.style.display = 'none';
}
});
});
});
}
// Setup forms
function setupForms() {
// Contact form
const contactForm = document.getElementById('contact-form');
if (contactForm) {
// Pre-fill if coming from quote
const urlParams = new URLSearchParams(window.location.search);
const subject = urlParams.get('subject');
if (subject === 'quote') {
const subjectSelect = contactForm.querySelector('select');
if (subjectSelect) subjectSelect.value = 'Request Quote';
}
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
showToast('Message sent successfully! We\'ll get back to you within 2 hours.');
this.reset();
});
}
// B2B form
const b2bForm = document.getElementById('b2b-form');
if (b2bForm) {
b2bForm.addEventListener('submit', function(e) {
e.preventDefault();
showToast('Consultation request submitted! Our B2B team will contact you shortly.');
this.reset();
});
}
}
// Show toast notification
function showToast(message) {
// Remove existing toast
const existing = document.querySelector('.toast');
if (existing) existing.remove();
const toast = document.createElement('div');
toast.className = 'toast';
toast.innerHTML = `
<div class="flex items-center gap-3">
<i data-feather="check-circle" class="w-5 h-5 text-primary-600"></i>
<span>${message}</span>
</div>
`;
document.body.appendChild(toast);
if (typeof feather !== 'undefined') {
feather.replace();
}
setTimeout(() => toast.classList.add('show'), 10);
setTimeout(() => {
toast.classList.remove('show');
setTimeout(() => toast.remove(), 300);
}, 4000);
}
// Setup scroll animations
function setupScrollAnimations() {
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-slide-up');
observer.unobserve(entry.target);
}
});
}, observerOptions);
// Observe sections for animation
document.querySelectorAll('section > div').forEach(el => {
el.style.opacity = '0';
el.style.transform = 'translateY(30px)';
observer.observe(el);
});
}
// Add CSS animation classes dynamically
const style = document.createElement('style');
style.textContent = `
.animate-slide-up {
animation: slideUp 0.6s ease-out forwards;
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
`;
document.head.appendChild(style);
|