[ css 动画 animation ] animation新增动画属性的实例演示

Posted 窗棂博客记录

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[ css 动画 animation ] animation新增动画属性的实例演示相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang=‘zh-cn‘>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>[ animation ] 新增动画属性的实例演示</title>
<meta http-equiv=‘description‘ content=‘this is my page‘>
<meta http-equiv=‘keywords‘ content=‘keyword1,keyword2,keyword3‘>

<style type=‘text/css‘>
div {
  margin: 0; padding: 0;
}
#box {
  width: 100px; height: 100px; background:red;animation:move 3s 3 alternate forwards;position:absolute;left:0;top:0; 
}
@keyframes move{
  0%{
    left:0;
    top:0;
  }
  10%{
    left:300px;
    top:450px;
  }
  50%{
    left:0px;
    top:500px;
  }
  75%{
    left:900px;
     top:50px;
  }
  100%{
     left:70px;
     top:230px;
  }
}

</style>
</head>
<body>
  <div id=‘box‘></div>
</body>
</html>

 

以上是关于[ css 动画 animation ] animation新增动画属性的实例演示的主要内容,如果未能解决你的问题,请参考以下文章

CSS3 animation动画,循环间的延时执行该怎么弄

jQuery 动画

jQuery 动画

松软科技课堂:jQuery 效果 - 动画

animation绘制动画图

如何停止css animation动画