CnJaFlashC-1 / static\script.js
OzoneAsai's picture
Upload static\script.js with huggingface_hub
e437872 verified
raw
history blame contribute delete
479 Bytes
document.getElementById('prevBtn').addEventListener('click', function() {
navigate(prevUrl);
});
document.getElementById('nextBtn').addEventListener('click', function() {
navigate(nextUrl);
});
function navigate(url) {
const flashcard = document.getElementById('flashcard');
flashcard.classList.add('fade-out');
setTimeout(function() {
window.location.href = url;
}, 500); // Match this duration with the CSS animation duration
}