programming meme part-2

 

             

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>animation</title>
    <style>
        body {
            padding0;
            margin0;
            width100%;
            height100vh;
            background-colorrgb(01175);
            overflowhidden;
        }

        .container {
            positionabsolute;
            width150px;
            height230px;
            left-200px;
            bottom100px;
            animation20s container linear 15s 1;
            
            
        }
        
        .text {
            
            positionabsolute;
            font-size40px;
            width100%;
            font-familyVerdana, Geneva, Tahomasans-serif;
            animation10s textanimation linear 0s 1;
            opacity0;
            
        }
        
        p {
            
            text-aligncenter;
            word-spacing7px;
            color:white;
            
        }
        
        .road {
            width900px;
            height4px;
            background-colorrgb(255255255);
            positionabsolute;
            bottom-100px;
            animation3s road linear 10s 1 forwards;
        }

        .head {
            positionabsolute;
            width70px;
            height70px;
            border-radius50%;
            border5px solid rgb(255255255);
            left33px;
            top4px;
        }

        .body,
        .lefthand,
        .righthand,
        .leftleg,
        .rightleg {
            width4px;
            height67px;
            background-colorrgb(255255255);
            positionabsolute;
        }



        .body {

            left70px;
            top79px;

        }

        .lefthand {
            top84px;
            left70px;
            transform-origintop;
            transformrotate(35deg);
            animation2s lefthand linear infinite;

        }

        .righthand {
            top85px;
            left70px;
            transform-origintop;
            transformrotate(-35deg);
            animation2s righthand linear infinite;
        }
        
        .leftleg {
            left70px;
            top76px;
            transform-originbottom;
            transformrotate(210deg);
            animation1s leftleg linear infinite;
            
            
        }

        .rightleg {
            left70px;
            top76px;
            transform-originbottom;
            transformrotate(150deg);
            animation1s rightleg linear infinite;
            
        }
        


        @keyframes lefthand {
            0% {
                transformrotate(35deg);
            }

            50% {

                transformrotate(-35deg);
            }

            100% {
                transformrotate(35deg);

            }
        }

        @keyframes righthand {
            0% {
                transformrotate(-35deg);
            }

            50% {

                transformrotate(35deg);
            }

            100% {

                transformrotate(-35deg);

            }
        }

        @keyframes leftleg {
            0% {
                transformrotate(210deg);
            }

            50% {
                transformrotate(180deg);

            }

            100% {
                transformrotate(210deg);

            }
        }

        @keyframes rightleg {
            0% {
                transformrotate(150deg);
            }

            50% {
                transformrotate(180deg);
            }

            100% {
                transformrotate(150deg);

            }
        }

        @keyframes container {
            0% {
                bottom100px;
                left-200px;
            }

            89% {
                bottom100px;
                left900px;

            }

            90% {
                bottom100px;
                left900px;

            }

            100% {
                bottom-300px;
                left900px;

            }


        }

        @keyframes road {
            0% {
                bottom-100px;

            }

            100% {
                bottom120px;
            }

        }

        @keyframes textanimation {
            0% {
                bottom-100px;
                opacity1;
            }

            20%{
                opacity1;
                bottom300px;

            }
            95% {
                opacity1;
                bottom300px;

            }

            100% {
                opacity0;
                bottom300px;
            }
        }

    </style>
</head>

<body>
    <div class="container">
        <div class="head"></div>
        <div class="body"></div>
        <div class="lefthand"></div>
        <div class="righthand"></div>
        <div class="leftleg"></div>
        <div class="rightleg"></div>

    </div>
    <div class="text">
        <P>Me after realising that we cannot hack NASA with html</P>
    </div>
    <div class="road"></div>

</body>

</html>

Post a Comment

Previous Post Next Post