Pesquisar neste blog

31/03/2023

CSS Loading effect

Saída gerada



<!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>Document</title>
</head>
<style>
    body{
        background-color: white;
    }
    .loader-box{
        position: absolute;
        top: calc(50% - 25px);
        left: calc(50% - 25px);
    }
    .loader-box, .loader-box::before, .loader-box::before{
        position: absolute;
        border: 3px solid transparent;
        border-top: 3px solid red;
        border-radius: 50%;
        animation: rotate linear infinite;
        content: '';
    }
    .loader-box{
        height: 100px;
        width: 100px;
        animation-duration: 1.05s;
    }
    .loader-box::before{
        height: 75px;
        width: 75px;
        top: 10px;
        left: 10px;
        animation-duration: 10s;
    }
    .loader-box:after{
        height: 50px;
        width: 50px;
        top: 22px;
        animation-duration: 4s;
    }
    @keyframes rotate {
        from{
            transform: translateZ(360deg);
        }
        to{
            transform: rotateZ(360deg);
        }
    }
</style>
<body>
    <div class="loader-box"></div>
</body>
</html>

30/03/2023

Texto Glowing em CCS

Saída gerada


<!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="5">
    <title>Text Animation</title>
</head>
<style>
    body{
        background-color: black;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: sans-serif;
        font-size: 4rem;
        height: 100vh;
    }
    .container > span{
        text-transform: uppercase;
        animation: glow 2.5s ease-in-out infinite;
    }
    @keyframes glow {
        0%, 100%{
            color: white;
            text-shadow: 0 0 50px #FC00FF, 0 0 50px
            #FC00FF, 0 0 100px #FC00FF;
        }
        10%, 90%{
            color: #24e013;
            text-shadow: none;
        }
    }
    .container > span:nth-child(2){
        animation-delay: 0.25s;
    }
    .container > span:nth-child(3){
        animation-delay: 0.5s;
    }
    .container > span:nth-child(4){
        animation-delay: 0.75s;
    }
    .container > span:nth-child(5){
        animation-delay: 1s;
    }
    .container > span:nth-child(6){
        animation-delay: 1.25s
    }
    .container > span:nth-child(7){
        animation-delay: 1.5s;
    }
    .container > span:nth-child(8){
        animation-delay: 1.75s;
    }
   
</style>
<body>
    <div class="container">
        <span>C</span>
        <span>R</span>
        <span>E</span>
        <span>A</span>
        <span>T</span>
        <span>I</span>
        <span>V</span>
        <span>E</span>
    </div>
</body>
</html>

29/03/2023

Rings animation in CSS

Saída gerada



























<!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>Rings Animation</title>
</head>
<style>
    body{
        margin: 200px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: 100vh;
        background: radial-gradient(#78d5ff, #0081e8);
    }
    .loader{
        position: relative;
        width: 180px;
        height: 180px;
        display: flex;
        justify-content: center;
        align-items: center;
        transform-style: preserve-3d;
        transform: perspective(500px) rotateX(45deg);
    }
    .loader span{
        position: absolute;
        display: block;
        border: 15px solid #fff;
        box-sizing: border-box;
        border-radius: 50%;
        box-shadow: 0 10px 0 #e0e0e0, inset 0 10px 0 #e0e0e0;
        animation: animate 4.5s ease-in-out infinite;
    }
    .loader span:nth-child(1){
        animation-delay: 0s;
    }
    .loader span:nth-child(2){
        animation-delay: -1.5s;
    }
    .loader span:nth-child(3){
        animation-delay: -3.0s;
    }
    @keyframes animate {
        0%{
            transform: translateZ(-100px);
            width: 100%;
            height: 100%;
        }
        25%{
            transform: translateZ(100px);
            width: 100%;
            height: 100%;
        }
        50%{
            transform: translateZ(100px);
            width: 35%;
            height: 35%;
        }
        75%{
            transform: translateZ(-100px);
            width: 35%;
            height: 35%;
        }
        100%{
            transform: translateZ(100px);
            width: 100%;
            height: 100%;
        }
    }
</style>
<body>
    <div class="loader">
        <span></span>
        <span></span>
        <span></span>
    </div>
</body>
</html>

28/03/2023

Bottom Animation CSS

Saída gerada



















<!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="7">
    <title>Document</title>
</head>
<style>
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
    }
    body{
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-height: 100vh;
        justify-content: center;
        align-items: center;
        background: #000;
    }
    a{
        position: relative;
        width: 160px;
        height: 50px;
        line-height: 48px;
        background: #000;
        text-transform: uppercase;
        font-size: 25px;
        text-align: center;
        letter-spacing: 0.1em;
        text-decoration: none;
        transition: 0.5s;

        /*-webkit-box-reflect: below 1px linear-gradient(transparent, #0004);*/
    }
    a span{
        position: absolute;
        display: block;
        top: 1px;
        left: 1px;
        right: 1px;
        bottom: 1px;
        text-align: center;
        background: #0c0c0c;
        color: rgba(255, 255, 255, 5);
        transition: 0.5s;
    }
    a:hover span{
        color: rgba(255, 255, 255, 1);
    }
    a span::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: rgba(255, 255, 255, 0.1);
        z-index: 10;
    }
    a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg,
        #c0392b,
        #f39c12,
        #f1c40f,
        #2ecc71,
        #3498db,
        #2980b9,
        #9b59b6,
        #8e44ad,
        #c0392b,
        #f39c12,
        #f1c40f,
        #2ecc71,
        #3498db,
        #2980b9,
        #9b59b6,
        #8e44ad);
        background-size: 400%;
        opacity: 0;
        transition: 2.5s;
        animation: eff 20s linear infinite;
    }
    a:hover::before,
    a:hover::after{
        opacity: 1;
    }
    a::after{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg,
        #c0392b,
        #f39c12,
        #07df12,
        #05f8ec,
        #f8fc03,
        #2ecc71,
        #130ff1,
        #9b59b6,
        #f39c12,
        #0c0c0c,
        #e605c8,
        #f50808,
        #f03ae7,
        #2ec236);
        background-size: 400%;
        opacity: 0;
        filter: blur(20px);
        transition: 0.5s;
        animation: eff 50s ease infinite;
    }
    @keyframes eff {
        0%{
            background-position: 0 0 ;
        }
        50%{
            background-position: 400% 0;
        }
        100%{
            background-position: 0 0;
        }
    }
</style>
<body>
    <a href="#"><span>Buttom</span></a>
    <a href="#"><span>Buttom</span></a>
</body>
</html>

27/03/2023

Easy CSS Text Animation

<!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>Document</title>
    <meta http-equiv="refresh" content="5">
</head>
<style>
    body{
        background-color: rgb(97, 236, 17);
    }
    h1{
        background-image: url("https://c.tenor.com/RqH54jCv970AAAAM/lines.gif");
        color: transparent;
        -moz-background-clip: text;
        -webkit-background-clip: text;
        font-size: 100px;
    }
</style>
<body>
    <h1>HELLO WORLD !</h1>
</body>
</html>

Saída gerada





26/03/2023

CSS Animation

Saída gerada
































<!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>Document</title>
</head>
<style>
    body{
        margin: 0;
        padding: 0;
    }
    .animation{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .ball{
        width: 50px;
        border-top: 25px solid black;
        border-bottom: 25px solid black;
        border-radius: 50%;
        animation: animate 1s linear infinite;
    }
    @keyframes animate{
        0%{
            transform: translateY(0) rotate(0);
        }
        50%{
            transform: translateY(-200px) rotate(180deg);
        }
        100%{
            transform: translateY(0) rotate(360);
        }
    }
    .shadow{
        position: absolute;
        top: 40px;
        left: 0;
        width: 50px;
        height: 10px;
        background: #262626;
        border-radius: 50%;
        opacity: .8;
        animation: shadow 1s linear infinite;
    }
    @keyframes shadow{ /*SOMBREAMENTO*/
        0%{
            transform: scale(1);
        }
        50%{
            transform: scale(.5);
        }
        100%{
            transform: scale(1);
        }
    }
</style>
<body>
    <div class="animation">
        <div class="ball"></div>
        <div class="shadow"></div>
    </div>
</body>
</html>

23/03/2023

Animação com imagens em CSS

Saída gerada
























<!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>IMG Hover</title>
    <meta http-equiv="refresh" content="4">
</head>
<style>
    .container{
        display: flex;
        width: 100%;
        padding: 4% 2%;
        box-sizing: border-box;
        height: 100vh;    
    }
    .box{
        flex: 1;
        overflow: hidden;
        transition: .5s;
        margin: 0 5%;
        box-shadow: 0 20px 3px black;
        line-height: 0;
    }
    .box > img{
        width: 100%;
        height: calc(100% - 10vh);
        object-fit: cover;
        transition: .5s;
    }
    .box > span{
        font-size: 3.8vh;
        display: block;
        text-align: center;
        height: 10vh;
        line-height: 2.6;
    }
    .box:hover{flex: 1 1 40%;}
    .box:hover > img{height: 100%;}
</style>
<body>
    <div class="container">
        <div class="box">
            <img src="../img/Jenifer Cornely(1).jpg" alt="">
            <span>Jenifer</span>
        </div>
        <div class="box">
            <img src="../img/noruega(1).jpg" alt="">
            <span>Noruega</span>
        </div>
        <div class="box">
            <img src="../img/mulher(1).jpg" alt="">
            <span>Mulher</span>
        </div>
        <div class="box">
            <img src="../img/amazonia.jpg" alt="">
            <span>Natureza</span>
        </div>
        <div class="box">
            <img src="../img/passaros.jpg" alt="">
            <span>Aves</span>
        </div>
        <div class="box">
            <img src="../img/tucano.jpg" alt="">
            <span>Tucano</span>
        </div>
    </div>
</body>
</html>