Spaces:
Sleeping
Sleeping
File size: 464 Bytes
7f03210 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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
}
|