Crédito Label

Actualités

GROSSE REVELATION

GROSSE REVELATION

For performance-based artists, including audience impact and social proof can be powerful. The RUCKUS JUICE JUG STOMPERS’ bio effectively conveys their energeti...

2
12/11/2025    0
TOURNAGE EN COURS

TOURNAGE EN COURS

Bientôt la sortie du clip de mélodie ...

1
11/11/2025    0
BEFORE YOU

BEFORE YOU

Déjà disponible...

0
09/11/2025    0
NOUVELLE SORTIE

NOUVELLE SORTIE

Bientot une nouvelle sortie de SAM ELDIS ...

0
09/11/2025    0
Showcase SAM ELDIS

Showcase SAM ELDIS

SAM ELDIS sera en showcase exclusif à Cotonou ce samedi....

0
08/11/2025    0
// Effet 3D léger dynamique sur les cartes document.querySelectorAll('.card').forEach(card => { card.addEventListener('mousemove', e => { const rect = card.getBoundingClientRect(); const x = e.clientX - rect.left; // position souris X const y = e.clientY - rect.top; // position souris Y const centerX = rect.width/2; const centerY = rect.height/2; const rotateX = ((y - centerY)/centerY)*5; // max 5deg const rotateY = ((x - centerX)/centerX)*5; card.style.transform = `rotateX(${-rotateX}deg) rotateY(${rotateY}deg) scale(1.02)`; }); card.addEventListener('mouseleave', () => { card.style.transform = 'rotateX(0deg) rotateY(0deg) scale(1)'; }); });