coyotte508's picture
coyotte508 HF Staff
just a nice website about turtles, colorful, in anime sstyle
f1ed14e verified
raw
history blame
745 Bytes
document.addEventListener('DOMContentLoaded', () => {
// Add any interactive elements here
const heartButtons = document.querySelectorAll('[data-feather="heart"]');
heartButtons.forEach(button => {
button.addEventListener('click', (e) => {
e.target.classList.toggle('fill-current');
e.target.classList.toggle('text-blossom-500');
});
});
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
});