forked from syauqi/learnify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major Improvement + Animations Landing Page π€π»
Major Improvement + Animations Landing Page π€π»
- Loading branch information
Showing
6 changed files
with
204 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -268,6 +268,27 @@ | |
<script src="<?= base_url('assets/') ?>vendors/counter-up/jquery.counterup.js"></script> | ||
<script src="<?= base_url('assets/') ?>js/mail-script.js"></script> | ||
<script src="<?= base_url('assets/') ?>js/theme.js"></script> | ||
<script> | ||
var animateButton = function(e) { | ||
e.preventDefault; | ||
e.target.classList.remove('animate'); | ||
e.target.classList.add('animate'); | ||
setTimeout(function() { | ||
e.target.classList.remove('animate'); | ||
}, 700); | ||
}; | ||
|
||
var bubblyButtons = document.getElementsByClassName("bubbly-button"); | ||
|
||
for (var i = 0; i < bubblyButtons.length; i++) { | ||
bubblyButtons[i].addEventListener('click', animateButton, false); | ||
} | ||
</script> | ||
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script> | ||
<script> | ||
AOS.init(); | ||
</script> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,3 @@ | ||
<!-- | ||
@Project: Learnify | ||
@Programmer: Syauqi Zaidan Khairan Khalaf | ||
@Website: https://linktr.ee/syauqi | ||
@Email : [email protected] | ||
|
||
@About-Learnify : | ||
Web Edukasi Open Source yang dibuat oleh Syauqi Zaidan Khairan Khalaf. | ||
Learnify adalah Web edukasi yang dilengkapi video, materi dan sistem ujian | ||
yang tersedia secara gratis. Learnify dibuat ditujukan agar para siswa dan | ||
guru dapat terus belajar dan mengajar dimana saja dan kapan saja. | ||
--> | ||
|
||
<!doctype html> | ||
<html lang="en"> | ||
|
||
|
@@ -37,6 +24,7 @@ | |
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet"> | ||
<!-- Scripts --> | ||
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet"> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js"></script> | ||
<script src="<?= base_url('assets/') ?>js/jquery-3.3.1.min.js"></script> | ||
<script src="<?= base_url('assets/') ?>js/popper.js"></script> | ||
|
@@ -46,6 +34,7 @@ | |
$("#nav<?= $this->uri->segment(2); ?>").addClass('active') | ||
}) | ||
</script> | ||
|
||
</head> | ||
|
||
<body> | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.