본문으로 바로가기

isScrolledView moveUp 차례대로 효과주기

category 퍼블리싱/TIP 2016. 1. 14. 10:16

#section03 ul li:first-child{

  -webkit-animation:moveUp 0.6s 0.5s forwards;

  animation:moveUp 0.6s 0.5s forwards;

  animation-play-state: paused;

  opacity: 0;

}

#section03 ul li:nth-child(2){

  -webkit-animation:moveUp 0.6s 1.5s forwards;

  animation:moveUp 0.6s 1.5s forwards;

  animation-play-state: paused;

  opacity: 0;

}

#section03 ul li:last-child{

  -webkit-animation:moveUp 0.6s 2.5s forwards;

  animation:moveUp 0.6s 2.5s forwards;

  animation-play-state: paused;

  opacity: 0;

}




이것저것 해보았는데 안되서 다음날 다시 해봤는데 저렇게 하니까 되더라.

해보다가 안되면 계속 붙잡고 있지말고 다음으로 넘길 것.