- 램 캐시됨 줄이기. 게임속도 올려주고 잔렉 없애주⋯
- [SM5] 타이어 사이즈
- [CSS] 웹접근성을 위한 CSS blind 처리⋯
- [VS Code] Extention 설치 위치
- Window11 작업관리자 여는 방법
- [VS Code] 마우스 올렸을때 설명 툴팁 팝업⋯
- [카카오톡] PC 카카오톡 사진 묶어서 보내기
- NVM 설치하고 Node js 버전관리하는 방법.
- 프리랜서 국민연금 가입예고문 11월 말 이전에 해⋯
- [에이펙스레전드_Apex Legends] 시즌11⋯
- [에이펙스레전드_Apex Legends] 음성 변⋯
- [에이펙스레전드_Apex Legends] 에이펙스⋯
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는..