首頁 > web前端 > css教學 > 主體

使用CSS實現向右彈出動畫效果

WBOY
發布: 2023-08-23 21:41:02
轉載
1040 人瀏覽過

使用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 bounceOutRight {
            0% {
               -webkit-transform: translateX(0);
            }
            20% {
               opacity: 1;
               -webkit-transform: translateX(-20px);
            }
            100% {
               opacity: 0;
               -webkit-transform: translateX(2000px);
            }
         }

         @keyframes bounceOutRight {
            0% {
               transform: translateX(0);
            }
            20% {
               opacity: 1;
               transform: translateX(-20px);
            }
            100% {
               opacity: 0;
               transform: translateX(2000px);
            }
         }

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

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

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

   </body>
</head>
登入後複製

以上是使用CSS實現向右彈出動畫效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板