diff options
| author | 8cy <[email protected]> | 2020-10-12 19:50:30 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-10-12 19:50:30 -0700 |
| commit | c87d894d01b789f7953f558ad5cc68080c0f8b29 (patch) | |
| tree | 1f42fa39ea03d1e4ccd92b56b4758b3fe783eee5 /public/index.html | |
| download | me-c87d894d01b789f7953f558ad5cc68080c0f8b29.tar.xz me-c87d894d01b789f7953f558ad5cc68080c0f8b29.zip | |
woops i forgot to commit these files lul
Diffstat (limited to 'public/index.html')
| -rw-r--r-- | public/index.html | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..af6ea12 --- /dev/null +++ b/public/index.html @@ -0,0 +1,78 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8" /> + <link rel="icon" href="%PUBLIC_URL%/superthumb.jpg" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <meta name="theme-color" content="#0f0f0f" /> + <meta name="author" content="Fuwn" /> + <meta name="description" content="Fuwn, Full-stack Node.js Developer, Reverse Engineer, YouTuber." /> + <link rel="apple-touch-icon" href="%PUBLIC_URL%/superthumb.png" /> + <!-- manifest.json provides metadata used when your web app is installed on a + user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ --> + <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> + + <script src="https://code.jquery.com/jquery-3.4.1.js"></script> + + <!-- Bootstrap CDNs --> + <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> + <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script> + + <!-- Google Fonts --> + <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:100,100i,300,300i,400,400i,500,500i,700,700i" rel="stylesheet"> + + <!-- Terminal Effects --> + <script src="js/t.min.js"></script> + + <!-- On-scroll Animations --> + <link rel="stylesheet" href="animate.css"> + <script src="js/wow.min.js"></script> + + <!-- <title></title> --> + </head> + <body> + <noscript>You need to enable JavaScript to run this app.</noscript> + <div id="root"></div> + + <!-- Greensock CDN --> + <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.2/TweenMax.min.js"></script> + + <script type="text/javascript"> + window.addEventListener('load', function() { + $("#toggle").click(function() { + $(this).toggleClass('on'); + $("#resize").toggleClass("active"); + }); + + $("#resize ul li a").click(function() { + $(this).toggleClass('on'); + $("#resize").toggleClass("active"); + }); + + $(".close-btn").click(function() { + $(this).toggleClass('on'); + $("#resize").toggleClass("active"); + }); + + TweenMax.from("#brand", 1, { + delay: 0.4, + y: 10, + opacity: 0, + ease: Expo.easeInOut + }); + + TweenMax.staggerFrom("#menu li a", 1, { + delay: 0.4, + opacity: 0, + ease: Expo.easeInOut + }, 0.1); + + new WOW().init(); + }); + + document.addEventListener('contextmenu', function(e) { + e.preventDefault(); + }, false); + </script> + </body> +</html> |