CnJaFlashC-1 / static /script.js
OzoneAsai's picture
Create script.js
7f03210 verified
raw
history blame
464 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
}