CSS 滚动效果
描述
一个元素可以通过在一个轴上翻转一遍又一遍来朝特定方向移动。
语法
@keyframes rollOut {
   0% {
      opacity: 1;
      transform: translateX(0px) rotate(0deg);
   }
   100% {
      opacity: 0;
      transform: translateX(100%) rotate(120deg);
   }
}
参数
- Transform - Transform应用于元素的二维和三维变换。
 - 
Opacity - Opacity应用于元素以使其具有半透明效果。
 
示例
<html>
   <head>
      <style>
         .animated {
            background-image: url(https://geek-docs.com/static/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 rollOut {
            0% {
               opacity: 1;
               -webkit-transform: translateX(0px) rotate(0deg);
            }
            100% {
               opacity: 0;
               -webkit-transform: translateX(100%) rotate(120deg);
            }
         }
         @keyframes rollOut {
            0% {
               opacity: 1;
               transform: translateX(0px) rotate(0deg);
            }
            100% {
               opacity: 0;
               transform: translateX(100%) rotate(120deg);
            }
         }
         .rollOut {
            -webkit-animation-name: rollOut;
            animation-name: rollOut;
         }
      </style>
   </head>
   <body>
      <div id = "animated-example" class = "animated rollOut"></div>
      <button onclick = "myFunction()">Reload page</button>
      <script>
         function myFunction() {
            location.reload();
         }
      </script>
   </body>
</html>
会产生以下结果 −
极客教程