কম্পিউটার

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: 10s;animation-duration: 10s;
            -webkit-animation-fill-mode: both;animation-fill-mode: both;
         }
         @-webkit-keyframes fadeOut {
            0% {opacity: 1;}
            100% {opacity: 0;}
         }
         @keyframes fadeOut {
            0% {opacity: 1;}
            100% {opacity: 0;}
         }
         .fadeOut {
            -webkit-animation-name: fadeOut;
            animation-name: fadeOut;
         }
      </style>
   </head>
   <body>
      <div id="animated-example" class="animated fadeOut"></div>
      <button onclick="myFunction()">Reload page</button>
      <script>
         function myFunction() {
            location.reload();
         }
      </script>
   </body>
</html>

  1. CSS এর সাথে বিগ অ্যানিমেশন ইফেক্ট ফেইড আউট

  2. CSS এর সাথে Y এনিমেশন ইফেক্ট ফ্লিপ আউট

  3. CSS এর সাথে রোল আউট অ্যানিমেশন ইফেক্ট

  4. CSS দিয়ে অ্যানিমেশন ইফেক্ট ঘোরান