// Scroll to top button
document.addEventListener("DOMContentLoaded", function() {
const scrollToTopButton = document.createElement('button');
scrollToTopButton.innerText = "↑";
scrollToTopButton.style.position = "fixed";
scrollToTopButton.style.bottom = "20px";
scrollToTopButton.style.right = "20px";
scrollToTopButton.style.display = "none";
scrollToTopButton.style.backgroundColor = "#007bff"; // Mavi buton
scrollToTopButton.style.color = "white"; // Beyaz ok işareti
scrollToTopButton.style.border = "none";
scrollToTopButton.style.borderRadius = "50%";
scrollToTopButton.style.padding = "30px 40px"; // Boyut iki katına çıkarıldı
scrollToTopButton.style.fontSize = "30px"; // Yazı boyutu büyütüldü
scrollToTopButton.style.cursor = "pointer";
scrollToTopButton.style.boxShadow = "0 8px 16px rgba(0, 0, 0, 0.3)"; // Daha belirgin gölge
scrollToTopButton.style.zIndex = "1000"; // Üst katmanda görünmesi için
document.body.appendChild(scrollToTopButton);
window.addEventListener('scroll', function() {
if (window.scrollY > 200) {
scrollToTopButton.style.display = "block";
} else {
scrollToTopButton.style.display = "none";
}
});
scrollToTopButton.addEventListener('click', function() {
window.scrollTo({ top: 0, behavior: 'smooth' });
});
});
Çerez Kullanımı
Sizlere en iyi alışveriş deneyimini sunabilmek adına sitemizde çerezler(cookies) kullanmaktayız. Detaylı bilgi için Kvkk sözleşmesini inceleyebilirsiniz.