210706 UIUX WebDesign CSS 연습_63

ITisIT210·2021년 7월 10일
0

CSS

목록 보기
84/93
post-thumbnail
<!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>
        @keyframes txtAni {
            0% {
                transform: translate(0px, 300px);
                opacity: 0;
            }

            20% {
                transform: translate(0px, 0px);
                opacity: 1;
            }

            80% {
                transform: translate(0px, 0px);
                opacity: 1;
            }

            100% {
                transform: translate(300px, 0px);
                opacity: 0;
            }
        }

        body {
            overflow: hidden;
        }

        div {
            margin: 200px auto;
            text-align: center;
            font-family: "Arial Black";
            font-size: 50px;
            animation: txtAni 3s infinite;
        }
    </style>
</head>

<body>
    <div>
        Text Animation
    </div>
</body>

</html>
profile
Engineering is the closest thing to magic that exists in the world.

0개의 댓글