9 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
tistopandita 11425353c1 perbaiki index.html 2026-06-05 12:12:30 +07:00
tistopandita 8ba180e34b Merge remote-tracking branch 'origin/main' into feature/multilanguage 2026-06-05 12:10:23 +07:00
tistopandita dd18ed24a2 feat: add multilingual support (id/en) 2026-06-05 11:57:08 +07:00
4 changed files with 4210 additions and 3955 deletions
File diff suppressed because it is too large Load Diff
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
synchronously; body stays hidden until DOMContentLoaded