CSS3 示例:http://www.w3school.com.cn/cssref/pr_keyframes.asp
以下是代码:
<!DOCTYPE html><html><head><style> div{width:100px;height:100px;background:red;position:relative;-webkit-animation:mymove 5s infinite; /* Safari and Chrome */}@-webkit-keyframes mymove /* Safari and Chrome */{0% {top:200px;}25% {top:0px;}50% {top:200px;}75% {top:100px;}100% {top:200px;}}</style></head><body><p><b>注释:</b>本例在 Internet Explorer 中无效。</p><div></div></body></html>
css控制div上浮下落
原文地址:https://www.cnblogs.com/raitorei/p/9816662.html