Back to top
document.addEventListener("DOMContentLoaded", function () {
// Scroll ile yazı gösterme
const lines = document.querySelectorAll(".text-line");
function showLines() {
lines.forEach((line, index) => {
const rect = line.getBoundingClientRect();
if (rect.top < window.innerHeight * 0.85 && !line.classList.contains("visible")) {
setTimeout(() => {
line.classList.add("visible");
}, index * 300);
}
});
}
window.addEventListener("scroll", showLines);
showLines();
// Tracer çizgisi (fareyle hareket eden daire)
const tracer = document.querySelector("#tracer-dot");
if (tracer) {
document.addEventListener("mousemove", (e) => {
tracer.style.transform = `translate(${e.clientX}px, ${e.clientY}px)`;
});
}
});