Nghệ thuật
của thời
gian vàng
Mỗi chiếc đồng hồ là một tuyệt tác — được chế tác tỉ mỉ bởi những nghệ nhân bậc thầy, kết tinh hàng thế kỷ truyền thống horology Thụy Sĩ.
Bộ sưu tập
nổi bật
Cao Cấp
Sản phẩm bán chạy
New
⌚
Limited
🕰️
-15%
⏱️
Tinh hoa
từng chi tiết
Tiếng nói từ trái tim
Chiếc Grand Complication là khoản đầu tư xứng đáng nhất trong đời tôi. Chất lượng hoàn hảo, dịch vụ tư vấn tận tâm.
FELLMAN là địa chỉ tôi tin tuyệt đối cho bộ sưu tập đồng hồ. Hàng thật, giá tốt, bảo hành uy tín.
Đóng gói như một món quà cao cấp thực sự. Giao hàng nhanh, sản phẩm y hệt hình. Sẽ tiếp tục ủng hộ!
// Cursor const cur = document.getElementById('cur'); const ring = document.getElementById('cur-ring'); let mx=0,my=0,rx=0,ry=0;
document.addEventListener('mousemove', e => { mx = e.clientX; my = e.clientY; cur.style.left = mx+'px'; cur.style.top = my+'px'; }); (function loop(){ rx += (mx-rx)*0.12; ry += (my-ry)*0.12; ring.style.left = rx+'px'; ring.style.top = ry+'px'; requestAnimationFrame(loop); })();
// Real clock function clock(){ const n=new Date(), h=n.getHours()%12, m=n.getMinutes(), s=n.getSeconds(); const hd = document.querySelector('.hand-h'); const md = document.querySelector('.hand-m'); const sd = document.querySelector('.hand-s'); if(hd) hd.style.transform=`rotate(${h*30+m*0.5}deg)`; if(md) md.style.transform=`rotate(${m*6}deg)`; if(sd) sd.style.transform=`rotate(${s*6}deg)`; } clock(); setInterval(clock,1000);
function setPill(el){ document.querySelectorAll('.pill').forEach(p=>p.classList.remove('on')); el.classList.add('on'); }
function wish(btn){ const on = btn.textContent==='♥'; btn.textContent = on?'♡':'♥'; btn.style.color = on?'':'var(--gold)'; btn.style.borderColor = on?'':'var(--gold)'; }
function addCart(btn){ const t=btn.textContent; btn.textContent='Đã thêm ✓'; btn.style.background='#3A7A3A'; setTimeout(()=>{ btn.textContent=t; btn.style.background=''; },1800); }
function subscribe(btn){ const email=document.querySelectorAll('.nl-inp')[1]; if(email.value){ btn.textContent='Đã đăng ký thành công ✓'; btn.style.background='var(--gold)'; setTimeout(()=>{ btn.textContent='Đăng ký thành viên VIP'; btn.style.background=''; email.value=''; },3000); } }