Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> CSS

सीएसएस के साथ काज एनिमेशन प्रभाव

<घंटा/>

CSS के साथ हिंज एनिमेशन इफ़ेक्ट बनाने के लिए, आप निम्न कोड को चलाने का प्रयास कर सकते हैं:

उदाहरण

<html>
   <head>
      <style>
         .animated {
            background-image: url(/css/images/logo.png);
            background-repeat: no-repeat;
            background-position: left top;
            padding-top:95px;
            margin-bottom:60px;
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
         }

         @-webkit-keyframes hinge {
            0% {
               -webkit-transform: rotate(0);
               -webkit-transform-origin: top left;
               -webkit-animation-timing-function: ease-in-out;
            }

            20%, 60% {
               -webkit-transform: rotate(80deg);
               -webkit-transform-origin: top left;
               -webkit-animation-timing-function: ease-in-out;
            }
            40% {
               -webkit-transform: rotate(60deg);
               -webkit-transform-origin: top left;
               -webkit-animation-timing-function: ease-in-out;
            }
            80% {
               -webkit-transform: rotate(60deg) translateY(0);
               opacity: 1;
               -webkit-transform-origin: top left;
               -webkit-animation-timing-function: ease-in-out;
            }
            100% {
               -webkit-transform: translateY(700px);
               opacity: 0;
            }
         }

         @keyframes hinge {
            0% {
               transform: rotate(0);
               transform-origin: top left;
               animation-timing-function: ease-in-out;
            }
            20%, 60% {
               transform: rotate(80deg);
               transform-origin: top left;
               animation-timing-function: ease-in-out;
            }
            40% {
               transform: rotate(60deg);
               transform-origin: top left;
               animation-timing-function: ease-in-out;
            }
            80% {
               transform: rotate(60deg) translateY(0);
               opacity: 1;
               transform-origin: top left;
               animation-timing-function: ease-in-out;
            }
            100% {
               transform: translateY(700px);
               opacity: 0;
            }
         }

         .hinge {
            -webkit-animation-name: hinge;
            animation-name: hinge;
         }
      </style>

   </head>
   <body>

      <div id = "animated-example" class = "animated hinge"></div>
      <button onclick = "myFunction()">Reload page</button>

         <script>
            function myFunction() {
               location.reload();
            }
      </script>
   </body>
</html>

  1. सीएसएस के साथ वॉबल एनिमेशन प्रभाव

    CSS के साथ वॉबल एनिमेशन प्रभाव बनाने के लिए, आप निम्न कोड को चलाने का प्रयास कर सकते हैं - उदाहरण <html>    <head>       <style>          .animated {             background-image: url(/css/images/logo.p

  1. सीएसएस के साथ टाडा एनिमेशन प्रभाव

    सीएसएस के साथ टाडा एनीमेशन प्रभाव बनाने के लिए, आप निम्नलिखित कोड को चलाने का प्रयास कर सकते हैं: उदाहरण <html>    <head>       <style>          .animated {             background-image: url(/css/images

  1. सीएसएस के साथ स्विंग एनिमेशन प्रभाव

    स्विंग एनिमेशन प्रभाव किसी तत्व को निलंबित या अक्ष पर आगे और पीछे या एक तरफ से दूसरी ओर ले जाने या स्थानांतरित करने का कारण बनता है। उदाहरण <html>    <head>       <style>          .animated {