@charset "utf-8";

/* CSS Document */
/* 可自動持續上下移動的動畫 */
@keyframes myAnimation
{
    0% { margin-top: 0px;}
  30% { margin-top: 30px;  }
  
}

@-webkit-keyframes myAnimation
{
    0% { margin-top: 0px; }
  30% { margin-top: 30px;  }
 
}

.indexpic{
  width: 100%;
  height: 100%;
  animation: myAnimation 3s ease 0s infinite alternate;
  -webkit-animation: myAnimation 5s ease 0s infinite alternate;
}
