赞
踩
<!doctype html> <html> <head> <meta charset="utf-8"> <style> .body{ background-color: aqua; height: 700px; width: 1000px; } @keyframes bimg1 { 0% {top: 400px;} 50% {top:0px;transform:scale(1);opacity: 1; } 100% {top:0px; transform:scale(2);opacity: 0;} } @keyframes bimg2 { 0% {left: 0;} 100% {left: 400px;} } #item { animation: bimg1 7s infinite cubic-bezier(0,1,0,1),bimg2 7s infinite cubic-bezier(0,0,0,1); width: 50px; height: 50px; position: absolute; background: red; } @keyframes bimg3 { 0% {top: 400px;} 50% {top:0px;transform:scale(1);opacity: 1; } 100% {top:0px;transform:scale(2);opacity: 0;} } @keyframes bimg4 { 0% {left: 800px;} 100% {left: 400px;} } #item2 { animation: bimg3 7s infinite cubic-bezier(0,1,0,1),bimg4 7s infinite cubic-bezier(0,1,0,1); width: 50px; height: 50px; position: absolute; background: yellow; } </style> </head> <body> <div class="body"> <div id="item"> </div> <div id="item2"> </div> </div> </body> </html>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。