모바일 자동으로 늘어나는 textarea 만들기 > JavaScript

본문 바로가기
사이트 내 전체검색

JavaScript

모바일 자동으로 늘어나는 textarea 만들기

페이지 정보

profile_image
작성자 최고관리자
댓글 0건 조회 7,088회 작성일 21-02-10 17:37

본문

<!doctype html>
 <html>
 <head>
        <meta charset="utf-8">
        <title>autogrowshrink textarea</title>
        <meta name="viewport" content="width=device-width, user-scalable=no">
        <style>
                textarea {
                        margin: 50px;
                        width: 200px;
                        height: 30px;
                        border-radius: 5px;
                }
        </style>
 </head>
 <body>
       
        <textarea id="textarea"></textarea>
       
        <script src="js/jquery-1.6.4.min.js"></script>
        <script>
                (function() {
                       
                        var textarea = $('#textarea'),
                                originHeight = textarea.height(),
                                originClientHeight = textarea[0].clientHeight,
                                clone = textarea.clone(),
                                extraHeight = parseInt(textarea.css('fontSize')),
                                timer, content, cloneScrollHeight;
                       
                        clone
                                .removeAttr('id')
                                .removeAttr('name')
                                .css({
                                        position: 'absolute',
                                        top: 0,
                                        left: -9999,
                                        overflow: 'hidden'
                                }).appendTo('body');
                       
                        textarea.focus(function() {
                               
                                timer = setInterval(function() {
                                        content = textarea.val();
                                        clone.val(content);
                                        cloneScrollHeight = clone[0].scrollHeight;
                                       
                                        if (originClientHeight < cloneScrollHeight) {
                                                textarea.css('height', cloneScrollHeight + extraHeight);
                                        } else if (originClientHeight === cloneScrollHeight) {
                                                textarea.css('height', originHeight);
                                        }
                                }, 100);
                               
                        });
                       
                        textarea.blur(function() {
                                clearInterval(timer);
                        });
                       
                })();
        </script>
       
 </body>
 </html>

댓글목록

등록된 댓글이 없습니다.

회원로그인

회원가입

  • 게시물이 없습니다.

접속자집계

오늘
425
어제
3,408
최대
6,642
전체
1,129,540
contact : webmaster@beautipia.co.kr
Copyright © beautipia.co.kr. All rights reserved.