首页  >  文章  >  web前端  >  CSS 向下弹跳动画效果

CSS 向下弹跳动画效果

PHPz
PHPz转载
2023-08-25 20:45:201126浏览

CSS 向下弹跳动画效果

要使用 CSS 实现 Bounce In Down 动画效果,您可以尝试运行以下代码 -

示例

现场演示

<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 bounceInDown {
            0% {
               opacity: 0;
               -webkit-transform: translateY(-2000px);
            }
            60% {
               opacity: 1;
               -webkit-transform: translateY(30px);
            }
            80% {
               -webkit-transform: translateY(-10px);
            }
            100% {
               -webkit-transform: translateY(0);
            }
         }

         @keyframes bounceInDown {
            0% {
               opacity: 0;
               transform: translateY(-2000px);
            }
            60% {
               opacity: 1;
               transform: translateY(30px);
            }  
            80% {
               transform: translateY(-10px);
            }
            100% {
               transform: translateY(0);
            }
         }
         .bounceInDown {
-           webkit-animation-name: bounceInDown;
            animation-name: bounceInDown;
         }
      </style>
   </head>

   <body>
      <div id="animated-example" class="animated bounceInDown"></div>
      <button onclick="myFunction()">Reload page</button>
      <script>
         function myFunction() {
            location.reload();
         }
      </script>
   </body>

</html>

以上是CSS 向下弹跳动画效果的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除