aboutsummaryrefslogtreecommitdiff
path: root/public/index.html
blob: af6ea1200321cfd570a486f2d3a05009951abc15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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>