Under Construction | We are coming soon !!!!
National University of Management · International Program of Legal Studies
St.96 Christopher Howes, Khan Daun Penh, Phnom Penh
+855 (17) 611-252  ·  info@numilaw.edu.kh
NUMiLaw
EN KH
NUM International Program of Legal Studies Welcomes First Cohort

NUM International Program of Legal Studies Welcomes First Cohort

February 22, 2026 - 271 views

function handleMouseMove(e) { const container = document.getElementById('heroImageContainer'); const img = document.getElementById('heroImage'); const rect = container.getBoundingClientRect(); const x = e.clientX - rect.left; const y = e.clientY - rect.top; const centerX = rect.width / 2; const centerY = rect.height / 2; const moveX = (x - centerX) / 30; const moveY = (y - centerY) / 30; img.style.transform = `scale(1.05) translate(${moveX}px, ${moveY}px)`; } function handleMouseLeave(e) { const img = document.getElementById('heroImage'); img.style.transform = 'scale(1) translate(0px, 0px)'; }