일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 윈도우11
- 단축키
- INPUT
- 에이펙스레전드
- 서브라임 텍스트
- Scss
- VS
- 아이폰
- 제이쿼리
- Sass
- 태국
- 설정
- 오블완
- Github
- HTML
- vscode
- 컴퓨터
- CODE
- 윈도우10
- 서브라임
- 윈도우
- CSS
- 모바일
- SM5
- 컴파일
- sublime text
- 포토샵
- GIT
- 티스토리챌린지
- 알리익스프레스
- Today
- Total
web sprit
Colored By Color Scripter™1234567891011121314151617181920212223 topmenu 에서 가로 100%인 bg를 나타낼때 쓰면 된다.기타 그밖에 내용은 수정하여 사용.
Colored By Color Scripter™12345678910111213141516171819202122232425262728293031/*①*/@font-face { font-family: 'NanumBarunGothic'; font-style: normal; src: url('./font/NanumBarunGothic.eot'); src: url('./font/NanumBarunGothic.eot?#iefix') format('embedded-opentype'), url('./font/NanumBarunGothic.woff') format('woff'), url('./font/NanumBarunGothic.ttf') format('truetype');} /*②*/@font-face { font-..
직관적으로 사용하면 된다. class의 변경의 경우 attr이라는 메소드를 호출해야 하며, $(this).attr('class','class_name'); 처럼 이용할 수 있다. class의 추가와 삭제 또한 돌직구 처럼~ $(this).addClass("class_name"); $(this).removeClass("class_name"); 처럼 사용하면 된다. css의 기본이 숙지되어 있다면, 변경과 추가,삭제는 어떻게 다른지 아실터... (변경은 말그대로 기존의 class를 버리고 교체.) (추가는 class="class_1 class_2" 와 같은 방식..추가,삭제!) 참고로 아직 쓸일이 없어서 사용해보지는 않았지만.... 클래스의 유무를 판단해주는 .hasClass(); //반환값으로는 true는..