Pesquisar neste blog

14/03/2023

Animação com texto usando CSS

<!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">
    <meta http-equiv="refresh" content="3">
    <title>Campo elemento</title>
   
       
    <style>
        #container{
            background-color: #000;

        }
        h1{
            -webkit-text-stroke: .5vh #fff;
            font-size: 30vw;
            font-weight: bold;
            text-align: center;
            text-transform: uppercase;
            background-image: url(img/energisa.jpg);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            animation: text 10s ease alternate infinite;
        }
        @keyframes text{
            from{
                background-position: 0% 50%;
            }
            to{
                background-position: 100% 50%;
            }
        }
        .scale{
            transform: scale(1);
        }
    </style>
         
</head>

<body id="container">
    <div>
        <h1>Like !</h1>
    </div>
</body>
</html>

Saída gerada



Nenhum comentário: