티스토리 뷰

가상선택자 :after :before css 구성내용을 jquery 로 변경하고자 할 경우.


1. css

 h2:after {
    content:"Λ";
    color:#fff;
    position:absolute;
    right:20px;
    top:0;
}
h2.changed:after {
    content:"V ";
    color:#fff;
    position:absolute;
    right:20px;
    top:0;       
}

2. jQuery

$('h2').toggleClass('changed');


'제이쿼리' 카테고리의 다른 글

브라우저 및 사용환경 체크  (0) 2017.01.04
튤팁  (0) 2017.01.04
tree 메뉴  (0) 2017.01.04
첨부파일 디자인  (0) 2017.01.04
간단한 탭메뉴  (0) 2017.01.04
댓글