123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box{
- width: 200px;
- height: 200px;
- background-color: red;
- /*animation 动画 后面属性分别时 动画名称 动画时间 动画速度 动画延迟 动画结束状态 */
- /* animation: foo 2s linear 2s forwards; */
- /* 最后一个数字动画重复次数 */
- /* animation: foo 2s linear 2s 3; */
- /* 动画重复次数 infinite 无限次 */
- /* animation: foo 2s linear infinite; */
- /* 动画名称 */
- animation-name: foo;
- /* 动画时间 */
- animation-duration: 2s;
- /* 动画速度 */
- animation-timing-function: linear;
- /* 动画延迟 */
- /* animation-delay: 2s; */
- /* 动画结束状态 */
- /* animation-fill-mode: forwards; */
- /* 动画播放次数 */
- animation-iteration-count: infinite;
- }
- .box:hover{
- animation-play-state: paused;
- }
- /* 定义动画 @keyframes 后面跟着动画名称 */
- @keyframes foo {
- /* 动画内容 */
- 0%{
- transform: translateX(0);
- }
- 50%{
- transform: translateX(400px);
- }
- 100%{
- transform: translateX(0);
- }
- /* from{
- transform: translateX(0);
- }
- to{
- transform: translateX(200px);
- } */
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- </body>
- </html>
|