الكلية في أرقام
الكلية في أرقام
مؤشرات وإحصائيات كلية الآداب واللغات
document.addEventListener("DOMContentLoaded", function () {
const counters = document.querySelectorAll(".stat-number");
const observer = new IntersectionObserver(function(entries){
entries.forEach(function(entry){
if(entry.isIntersecting){
animateCounter(entry.target);
observer.unobserve(entry.target);
}
});
}, { threshold:0.4 });
counters.forEach(function(counter){ observer.observe(counter); });
function animateCounter(counter){
const target = parseInt(counter.getAttribute("data-target")); const duration = 2000; const start = 0; let startTime = null;
function update(currentTime){
if(!startTime){ startTime = currentTime; }
const progress = Math.min((currentTime - startTime) / duration, 1);
const value = Math.floor(progress * target);
counter.textContent = value.toLocaleString();
if(progress < 1){ requestAnimationFrame(update); }else{ counter.textContent = target.toLocaleString(); } } requestAnimationFrame(update); } });















