Filter by Tags
{
const tagSection = $refs.tagSelectionSection;
if (tagSection) {
// Scroll up to tag selection
const topPos = tagSection.getBoundingClientRect().top + window.pageYOffset - 80; // 80px offset
window.scrollTo({ top: topPos, behavior: 'smooth' });
}
})
"
@tag-selected.window="
$nextTick(() => {
const exercisesSection = $refs.exercisesSection;
if (exercisesSection) {
// Scroll down to exercises
const topPos = exercisesSection.getBoundingClientRect().top + window.pageYOffset - 80; // 80px offset
window.scrollTo({ top: topPos, behavior: 'smooth' });
// Highlight effect
highlightExercises = true;
setTimeout(() => highlightExercises = false, 1500); // Highlight for 1.5 seconds
}
})
"
class="p-4 rounded-xl"
x-data="{ highlightExercises: false }"
>
Available Exams
Select a Tag
Tags count: 41
C
(2)
E
(1)
F
(2)
I
(14)
L
(3)
P
(5)
R
(1)
S
(10)
T
(2)
V
(1)
No tag selected. Please select a tag to view exercises.