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 | 31 |
Tags
- 쿠버네티스
- 히든 스토리
- HTML
- 모두가 기다리는 사람
- 부자의그릇
- Container
- 비메모리 자원
- 참조 계수
- 칭기즈칸의 위대한 장군 수부타이
- try-with-resources
- sentry
- 수부타이
- 도파민형 인간
- java
- colllection
- CSS
- docker
- 월칙
- Infresh
- ESG
- apache kafka
- 레퍼런스 복사
- try width resources
- 이펙티브 자바
- node
- kubernetes
- 공헌감
- 아웃풋법칙
- 과제의 분리
- 뉴 컨피던스
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 |