위토즈 - 개발자프로그램판매공간

정보공유

[퍼블리싱] on off 가능한 checkbox css + jquery 조합 버튼


css


/* slider checkbox */

.wrap-btn-onoff .switch{position:relative;display:inline-block;width:40px;height:20px;vertical-align:middle}

.wrap-btn-onoff .switch input{display:none}

.wrap-btn-onoff .slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.4s;transition:.4s}

.wrap-btn-onoff .slider:before{position:absolute;content:"";height:15px;width:15px;left:2px;bottom:2px;background-color:#fff;-webkit-transition:.4s;transition:.4s}

.wrap-btn-onoff input.btn-onoff:checked + .slider{background-color:#2196F3}

.wrap-btn-onoff input.btn-onoff:focus + .slider{box-shadow:0 0 1px #2196F3}

.wrap-btn-onoff input.btn-onoff:checked + .slider:before{-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}

.wrap-btn-onoff .slider.round{border-radius:34px}

.wrap-btn-onoff .slider.round:before{border-radius:50%}

.wrap-btn-onoff > .text{margin:0;display:inline-block;height:20px;line-height:20px}



html


<div class="wrap-btn-onoff">

    <label class="switch">

      <input type="checkbox" class="btn-onoff">

      <span class="slider round"></span>

    </label>

    <span class="text">OFF</span><span class="text" style="display:none;">ON</span>

</div>



jquery


$(function() {

    $(document).on('click', '.btn-onoff', function() {

        $('.wrap-btn-onoff > .text').toggle();

    });

});

정보공유
Total 48건 1 페이지
번호 제목 글쓴이 날짜 조회
열람중 on off 가능한 checkbox css + jquery 조합 버튼 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 05-17 26
47 숫자형 input 요소 글자수 제한 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-29 2608
46 dl dt dd css 샘플 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 05-13 3552
45 CSS를 사용하여 4x4 형태의 갤러리 디자인 그리드 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 03-05 3960
44 html 로 된 svg 태그를 png 파일로 만들기. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 01-08 5224
43 css 가로폭 일정비율로 칸 만들기. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 01-18 5905
42 부트스트랩 모달창 제어 관련 스크립트. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 12-29 6924
41 [2021 최신 CSS 6] position:sticky 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-02 11150
40 [2021 최신 CSS 5] aspect-ratio 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-02 11361
39 [2021 최신 CSS 4] Flex Box Gap 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-02 11016
38 [2021 최신 CSS 3] 브라우저 지원여부 확인 @supports 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-02 10752
37 [2021 최신 CSS 2] 1줄로 정리 :is 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-02 10865
36 [2021 최신 CSS 1] 앱처럼 스크롤을 적용하자 scroll-snap 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 08-02 11628
35 웹페이지 인쇄할때 하단에 주소 안나오도록 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 06-22 11780
34 웹페이지 인쇄할때 페이지 구분하는 style 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 04-20 12393