Set how long it takes for an animation to complete a cycle using CSS

王林
Release: 2023-09-21 09:29:08
forward
670 people have browsed it

使用 CSS 设置动画完成一个周期所需的时间

Use the animation-duration property to set the time it takes for the animation to complete a cycle:

Example

Online demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            position: relative;
            background: red;
            animation-name: myanim;
            animation-duration: 2s;
         }
         @keyframes myanim {
            from {left: 0px; background-color: green;}
            to {left: 200px; background-color: blue;}
         }
      </style>
   </head>
   <body>
      <div> </div>
   </body>
</html>
Copy after login

The above is the detailed content of Set how long it takes for an animation to complete a cycle 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!