当前位置: 首页 > 文档资料 > CSS 入门教程 >

Shake

优质
小牛编辑
127浏览
2023-12-01

描述 (Description)

它提供了向上或向下移动(对象)或从一侧移动到一个元素。

语法 (Syntax)

@keyframes shake {
   0%, 100% {transform: translateX(0);} 
   10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);} 
   20%, 40%, 60%, 80% {transform: translateX(10px);} 
} 

参数 (Parameters)

  • Transform - 变换适用于元素的二维和三维变换。

  • Opacity - 不透明度适用于要进行半透明的元素。

例子 (Example)

<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 shake {
            0%, 100% {-webkit-transform: translateX(0);} 
            10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);} 
            20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);} 
         }
         @keyframes shake { 
            0%, 100% {transform: translateX(0);} 
            10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);} 
            20%, 40%, 60%, 80% {transform: translateX(10px);} 
         }
         .shake { 
            -webkit-animation-name: shake; 
            animation-name: shake; 
         }
      </style>
   </head>
   <body>
      <div id = "animated-example" class = "animated shake"></div>
      <button onclick = "myFunction()">Reload page</button>
      <script>
         function myFunction() {
            location.reload();
         }
      </script>
   </body>
</html>