Hi

animate.css 본문

WEB(웹)/css

animate.css

SharingWorld 2018. 7. 6. 11:17

animate.css 라는 사이트가 있다.


https://daneden.github.io/animate.css/


여기서 가져온 코드를


animate.css 라는 파일을 만들어




html에 링크를 걸어준다.


link(href='/stylesheets/animate.css' rel='stylesheet')



사용방법은


if ($this.is('[selected]')) {
$this.find('.icon').removeClass('animate bounceIn');
$this.removeAttr('selected');
}
else {
$this.find('.icon').addClass('animate bounceIn');
$this.attr('selected', '');
}

클래스를 add 하고 remove하는 식으로 쓴다.

'WEB(웹) > css' 카테고리의 다른 글

css @keyframes  (0) 2018.10.27
z-index 안될 때  (0) 2018.10.23
align-content  (0) 2018.08.19
background-clip  (0) 2018.07.15
css clearing  (2) 2018.07.06