D Care Clinic | คลินิกความงามระดับพรีเมียม สาขาบางแสน รังสิต รามคำแหง
document.addEventListener('DOMContentLoaded', function() {
const backToTopButton = document.getElementById('backToTop');
// แสดง/ซ่อนปุ่ม Back to Top เมื่อเลื่อนหน้า
window.addEventListener('scroll', function() {
if (window.pageYOffset > 300) {
backToTopButton.classList.add('show');
} else {
backToTopButton.classList.remove('show');
}
});
// เมื่อคลิกปุ่ม Back to Top
backToTopButton.addEventListener('click', function() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Cookie Consent Functionality
const cookieConsent = document.getElementById('cookieConsent');
const acceptCookiesButton = document.getElementById('acceptCookies');
// ตรวจสอบว่าผู้ใช้เคยยอมรับคุกกี้หรือไม่
if (!localStorage.getItem('cookiesAccepted')) {
setTimeout(() => {
cookieConsent.classList.add('show');
}, 2000);
}
// เมื่อคลิกยอมรับคุกกี้
acceptCookiesButton.addEventListener('click', function() {
localStorage.setItem('cookiesAccepted', 'true');
cookieConsent.classList.remove('show');
});
// Hover effect สำหรับ certification badges
const certBadges = document.querySelectorAll('.cert-badge');
certBadges.forEach(badge => {
badge.addEventListener('mouseover', function() {
this.style.transform = 'translateY(-5px) scale(1.05)';
});
badge.addEventListener('mouseout', function() {
this.style.transform = 'translateY(0) scale(1)';
});
});
// Smooth scroll สำหรับลิงก์ใน footer
document.querySelectorAll('.footer-links a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Animation สำหรับ contact items เมื่อ hover
const contactItems = document.querySelectorAll('.contact-item');
contactItems.forEach(item => {
item.addEventListener('mouseover', function() {
this.querySelector('i').style.transform = 'scale(1.2)';
});
item.addEventListener('mouseout', function() {
this.querySelector('i').style.transform = 'scale(1)';
});
});
// Loading animation สำหรับโลโก้
const footerLogo = document.querySelector('.footer-logo');
if (footerLogo) {
footerLogo.addEventListener('load', function() {
this.style.animation = 'fadeIn 0.5s ease-in-out';
});
}
});