Home > Web Front-end > CSS Tutorial > Flip X animation effect using CSS

Flip X animation effect using CSS

WBOY
Release: 2023-09-03 15:49:08
forward
1222 people have browsed it

使用 CSS 翻转 X 动画效果

To use CSS to achieve the Flip In X animation effect, you can try running the following code

Example

Live demonstration

<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: 1s;
            animation-duration: 1s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
         }
         @-webkit-keyframes flipInX {
            0% {
               -webkit-transform: perspective(400px) rotateX(90deg);
               opacity: 0;
            }
            40% {
               -webkit-transform: perspective(400px) rotateX(-10deg);
            }
            70% {
               -webkit-transform: perspective(400px) rotateX(10deg);
            }
            100% {
               -webkit-transform: perspective(400px) rotateX(0deg);
               opacity: 1;
            }
         }
         @keyframes flipInX {
            0% {
               transform: perspective(400px) rotateX(90deg);
               opacity: 0;
            }
            40% {
               transform: perspective(400px) rotateX(-10deg);
            }
            70% {
               transform: perspective(400px) rotateX(10deg);
            }
            100% {
               transform: perspective(400px) rotateX(0deg);
               opacity: 1;
            }
         }
         .flipInX {
            -webkit-backface-visibility: visible !important;
            -webkit-animation-name: flipInX;
            backface-visibility: visible !important;
            animation-name: flipInX;
         }
      </style>
   </head>
   <body>

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

The above is the detailed content of Flip X animation effect using CSS. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template