Skip to main content

Amazed Animation Properties in CSS3

 Amazed Animation Properties in CSS3

<!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 box</title>
    <style>
        .container{
            width: 100%;
            height: auto;
       
        }
        .para{
           
            height: auto;
        }
        body{
            background: black;
            color: white;
        }
        .para{
            width:50px;
            height:50px;
            padding: 15px;
            margin-left: 10px;
            border-radius: 100px;
            transform: translateX(40%) ;
            animation: loading 4s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        @keyframes loading {
            from{
                transform: translateX(-48px) ;
            }
            50%{
                left: 80%;
            }
            to{
                transform: translateX(200px) ;
            }
           
        }
        .para2{
            width:50px;
            padding: 15px;
            margin-left: 10px;
            border-radius: 100px;
            transform: translateX(40%);
            animation: second 4s infinite linear;
        }
        @keyframes second {
            from{
                transform: translateX(-48px);

            }
            to{
                transform: translateX(200px);
            }
           
        }
      .para3{
        width:50px;
            padding: 15px;
            margin-left: 10px;
            border-radius: 100px;
            transform: translateX(40%);
            animation: third 4s infinite ease;
        }
   
        @keyframes third {
            from{
                transform: translateX(-48px);

            }
            to{
                transform: translateX(200px);
            }
           
        }
        .para4{
            width:50px;
            padding: 15px;
            margin-left: 10px;
            border-radius: 100px;
            transform: translateX(40%);
            animation: third 4s infinite ease-in;
        }
   
        @keyframes fourth {
            from{
                transform: translateX(-48px);

            }
            to{
                transform: translateX(200px);
            }
           
        }
        .para5{
            width:50px;
            padding: 15px;
            margin-left: 10px;
            border-radius: 100px;
            transform: translateX(40%);
            animation: five 4s infinite ease;
        }
        @keyframes five {
            from{
                transform: translateX(-48px);

            }
            to{
                transform: translateX(200px);
            }
           
        }
        .para6{
            width:50px;
            padding: 15px;
            margin-left: 10px;
           
            border-radius: 100px;
            transform: translateX(40%);
            animation: six 4s infinite steps(15);
        }
        @keyframes six {
            from{
                transform: translateX(-48px);

            }
            to{
                transform: translateX(200px);
            }
           
        }
    </style>
</head>
<body>
    <div class="container">
        <h5>cubic-bezier</h5>
      <img  class="para"src="blink.png" alt="">
   
   
   
        <h5>Linear</h5>
        <img  class="para2"src="blink.png" alt="">
     
     
        <h5>Ease</h5>
        <img  class="para3"src="blink.png" alt="">
     
     
        <h5>Ease-in</h5>
        <img  class="para4"src="blink.png" alt="">
     
     
        <h5>Ease-in-out</h5>
        <img  class="para5"src="blink.png" alt="">
     
      <div >
        <h5>Step</h5>
        <img  class="para6"src="blink.png" alt="">
        </div>
     
</body>
</html>
/////==========output=====//////

Comments

Popular posts from this blog

How To Make Clone NETFLIX Webpage

 How To Make Clone NETFLIX Webpage...... With the Help of HTML CSS and JAVASCRIPT... <! 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 > Netflix Clone </ title >     < script src = "https://kit.fontawesome.com/a02bd9801f.js" crossorigin = "anonymous" ></ script > < link rel = "stylesheet" href = "https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css" >         < style >         body {             display : flex ;             justify-content : center ;             align-items : center ;         ...

How to make Calculator with easy coding

  <! 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 > New Calculator </ title >     < link rel = "stylesheet" href = "https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.4/font/bootstrap-icons.css" >     < link rel = "stylesheet" href = "style.css" >     < script src = "https://kit.fontawesome.com/a02bd9801f.js" crossorigin = "anonymous" ></ script > </ head > < body >     < div class = "container" >         < div class = "screen" >             < textarea name = "text" id = "text" cols = "30" rows = "7" readonly...

How to make simple calculator with Javascript

 */----- How to make simple calculator with javascript -----/* */------- source code below available ----/* <html lang="en"> <head>     <meta charset="UTF-8"></meta>     <meta content="IE=edge" http-equiv="X-UA-Compatible"></meta>     <meta content="width=device-width, initial-scale=1.0" name="viewport"></meta>     <title>calculator</title>     <style>         *{             box-sizing: border-box;         }         body{             min-height: 100vh;             background: #efeff2;             display: flex;             justify-content: center;             align-items: center;         }       ...