6 Commits

Author SHA1 Message Date
Syariffullah add634b89b Merge branch 'main' of https://git.ifuntanhub.dev/tisto/student-web-if-development-kit 2026-06-05 14:48:42 +07:00
Syariffullah 7cf590eee5 feat: Add reveal animations for smoother element transitions in style.css 2026-06-05 14:48:39 +07:00
tistopandita d8c33d7a3d localization global 2026-06-05 14:28:40 +07:00
pancaa 13fc797791 Merge pull request 'feat: add lazyloading' (#8) from feature/lazyloading into main
Reviewed-on: #8
Reviewed-by: pancaa <d1041231077@student.untan.ac.id>
2026-06-05 05:46:20 +00:00
tistopandita ad70dbd2d5 feat: add lazyloading 2026-06-05 12:24:44 +07:00
pancaa af7d7ee75a Merge pull request 'feature/multilanguage' (#7) from feature/multilanguage into main
Reviewed-on: #7
Reviewed-by: requestha <d1041231091@student.untan.ac.id>
Reviewed-by: pancaa <d1041231077@student.untan.ac.id>
2026-06-05 05:17:21 +00:00
3 changed files with 3911 additions and 2450 deletions
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+14
View File
@@ -1605,6 +1605,20 @@ body {
} }
} }
/* Animations */
.reveal {
opacity: 0;
transform: translateY(50px);
transition:
opacity 0.8s ease,
transform 0.8s ease;
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
/* ============================================================ /* ============================================================
ANTI-FLICKER — localization.js sets window.__currentLang ANTI-FLICKER — localization.js sets window.__currentLang
synchronously; body stays hidden until DOMContentLoaded synchronously; body stays hidden until DOMContentLoaded