楕円運動アニメクラス

楕円運動アニメクラス城内スタ-ト CSS ファイル
cir_oval.css


MoveImage に戻る

@charset "utf-8";

#wrap{
  margin:0 auto;
  width:600px;
  height:700px;
}
#object1{
  position:absolute;
  width:125px;
  height:125px;
  background-image:
  url(../img/apple.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;
}
#object2{
  position:absolute;
  width:125px;
  height:125px;
  background-image:
  url(../img/banana.gif);
  -webkit-animation-name:test2;
  animation-name:test2;
  -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;
}