탈

유튜브 댓글 입력 스타일

· 2017-10-07 (토) 19:31:29 · 3499

https://jsfiddle.net/minsupkr/9w6L5bua/ jQuery

https://jsfiddle.net/minsupkr/9w6L5bua/1/ CSS


html

[code]<div>

    <label for="inp">댓글을 입력하세요</label>

    <input type="text" id="inp">

</div>[/code]


css

[code]div {position:relative}

div:after {z-index:999;position:absolute;bottom:0;left:50%;width:0;height:0;background:#333;content:'';

  -webkit-transition:all 0.2s ease-out;

  transition:all 0.2s ease-out

}

.on:after {bottom:-1px;left:0;width:100%;height:2px}

div label {position:absolute;top:0;left:0}

.on label {color:#ccc}

input {width:100%;border:0;border-bottom:1px solid #ccc;background:transparent;outline:0;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}[/code]


javascript

[code]$(function(){

    $("input").on("focus", function(){

        $(this).closest("div").addClass("on");

    });

    $("input").on("blur", function(){

        $(this).closest("div").removeClass("on");

    });

});[/code]


유튜브 보다가 댓글란이 재밌어 보여서 빠르고 조잡하게 한번 짜봤습니다.

좀 다듬으면 쓸만하지 않을까요... ㅎㅎㅎ;;


팁자료실은 신택스하이라이트가 안 먹는군요.

@리자 @thisgun 멘션도 안 되는군요. ㅎㅎㅎ

|
댓글을 작성하시려면 로그인이 필요합니다.

퍼블리셔팁

1,282건

퍼블리싱과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
CSS 17-10-11 조회 2,699
CSS 17-10-11 조회 2,702
HTML 17-10-07 조회 3,500
HTML 17-10-06 조회 3,354
CSS 17-09-29 조회 2,288
CSS 17-09-29 조회 2,654
CSS 17-09-29 조회 2,512
CSS 17-09-26 조회 4,047
CSS 17-09-26 조회 2,707
CSS 17-09-26 조회 1,916
CSS 17-09-22 조회 2,222
CSS 17-09-22 조회 2,388
CSS 17-09-22 조회 2,353
HTML 17-09-22 조회 4,771
CSS 17-09-21 조회 1,910
CSS 17-09-21 조회 2,039
CSS 17-09-21 조회 1,899
CSS 17-09-19 조회 1,938
CSS 17-09-19 조회 1,621
CSS 17-09-19 조회 1,482
CSS 17-09-18 조회 2,573
CSS 17-09-18 조회 2,367
CSS 17-09-18 조회 2,335
CSS 17-09-14 조회 2,399
CSS 17-09-14 조회 2,071
CSS 17-09-14 조회 2,125
CSS 17-09-11 조회 2,455
CSS 17-09-11 조회 2,303
CSS 17-09-11 조회 2,110
CSS 17-09-10 조회 1,973