Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 아웃풋법칙
- 공헌감
- Infresh
- kubernetes
- Container
- 쿠버네티스
- 과제의 분리
- CSS
- try-with-resources
- docker
- 비메모리 자원
- sentry
- 이펙티브 자바
- 참조 계수
- colllection
- ESG
- apache kafka
- 히든 스토리
- 부자의그릇
- 칭기즈칸의 위대한 장군 수부타이
- 레퍼런스 복사
- try width resources
- HTML
- 월칙
- 수부타이
- java
- 도파민형 인간
- node
- 모두가 기다리는 사람
- 뉴 컨피던스
Archives
- Today
- Total
Hi
animate.css 본문
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 |