mirror of
https://github.com/vinta/awesome-python.git
synced 2026-08-04 07:03:57 +00:00
feat(website): add entrance animations and CSS-based filter bar visibility
Replace hidden attribute on filter-bar with opacity/transform transition driven by a .visible class, allowing smooth fade-in/slide-down when a filter is active. Add staggered hero-in keyframe animations to the page title, subtitle, action buttons, and search box. Polish sortable table headers with color transition on hover and active states. Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
7be5e77186
commit
b6bcb2c7e3
3 changed files with 32 additions and 5 deletions
|
|
@ -100,10 +100,10 @@ function applyFilters() {
|
|||
// Filter bar
|
||||
if (filterBar) {
|
||||
if (activeFilter) {
|
||||
filterBar.hidden = false;
|
||||
filterBar.classList.add('visible');
|
||||
if (filterValue) filterValue.textContent = activeFilter.value;
|
||||
} else {
|
||||
filterBar.hidden = true;
|
||||
filterBar.classList.remove('visible');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue