Skip to content
copyright>
// อัพเดทเวลาปัจจุบัน
function updateTime()
const now = new Date();
const options = timeZone: 'Asia/Bangkok', hour: '2-digit', minute: '2-digit', second: '2-digit' ;
const timeString = now.toLocaleTimeString('th-TH', options);
document.getElementById('current-time').textContent = 'เวลาปัจจุบัน: '
วิเคราะห์บอลสูงต่ํา + timeString;
setInterval(updateTime, 1000);
updateTime();
// เพิ่มเอฟเฟกต์การโหลดสำหรับการ์ด
document.addEventListener('DOMContentLoaded', function()
const cards = document.querySelectorAll('.card, .tip-card');
cards.forEach((card, index) =>
card.style.opacity = '0';
card.style.transform = 'translateY(20px)';
setTimeout(() =>
card.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
card.style.opacity = '1';
card.style.transform = 'translateY(0)';
, 100 + (index * 100));
);
);