楕円運動アニメ CSS ファイル
oval.css


Move Imageに戻る

@charset "utf-8";

#wrap{
  margin:0 auto;
  width:600px;
  height:700px;
}
#object{
  position:absolute;
  width:125px;
  height:125px;
  background-image:
    url(../img/orange.gif);
  -webkit-animation-name:test1;
          animation-name:test1;
  -webkit-animation-duration:5s;
          animation-duration:5s;
  -webkit-animation-timing-function:
          linear;
          animation-timing-function:
          linear;
  -webkit-animation-iteration-count:
          infinite;
          animation-iteration-count:
          infinite;
}