콘텐츠 글자 크기를 한번에 조절

매출이 오르면 내리는 수수료! 지금 수수료센터에서 전자결제(PG)수수료 비교견적 신청해 보세요!
콘텐츠 글자 크기를 한번에 조절

QA

콘텐츠 글자 크기를 한번에 조절

본문


#content { width:100%; }
#content .title { position:relative; margin:0; padding:0; }
#content .title > h2 { font-size:20px; padding-bottom:15px; }
#content .title > p { font-size:16px; line-height:20px; }
 
#content .info { margin-top:35px; }
#content .info > ul { padding:0; }
#content .info > ul > li { font-size:13px; }

 


<section id="content">
  <div class="title">
    <h2>부동산 컨설팅</h2>
    <p>고객의 부동산 자산 또는 매입 예정 부지 개발 솔루션을 제공합니다.</p>
  </div>
 
<div class="info">
  <ul>
    <li>주거용 부동산</li>
    <li>업무용 부동산</li>
    <li>상업용 부동산</li>
  </ul>
</div>
</section>

 

 

위와 같이 h1은 20px , p는 16px, li는 13px 인데,

 

237506203_1736390303.6812.jpg

 

 

이런 버튼을 통해 + 를 클릭할때마다 h1, p, li 글자 크기가 +2씩 최대 5번 클릭이내로 올라갈 수 없을까요?

 

 

구글링 중에 비슷한걸 찾았는데 확대 축소 버튼까지 같이 커지네요.

https://codepen.io/eunjin10914/pen/KZaRqJ

 

https://codepen.io/jamesbarnett/pen/QWjYRe

이 질문에 댓글 쓰기 :

답변 1

다음 코드가 도움이 될지 모르겠습니다.

 


<style>
#content { width:100%; }
#content .title { position:relative; margin:0; padding:0; }
#content .title > h2 { font-size:20px; padding-bottom:15px; }
#content .title > p { font-size:16px; line-height:20px; }
 
#content .info { margin-top:35px; }
#content .info > ul { padding:0; }
#content .info > ul > li { font-size:13px; }
</style>
 
<script>
function zoomInOut(obj) {
    var clicklimit = obj.clickLimit || Infinity;
    var clickcount = 0;
    var target = obj.target || document.body;
    function clickWatcher() {
        if (Math.abs(clickcount) > clicklimit) {
            if (clickcount > 0) {
                clickcount--;
            } else {
                clickcount++;
            }
            return false;
        }
        return true;
    }
 
    var seemSize = 1,
         zoomSize = 1,
         browser = navigator.userAgent.toLowerCase();
    function zoomIn()
        {
            clickcount++;
            if (clickWatcher() == false) { return; }
            seemSize += 0.05;
            zoomSize *= 1.2;
            zoom();
        }
        function zoomOut()
        {
            clickcount--;
            if (clickWatcher() == false) { return; }
            clickWatcher();
            seemSize -= 0.05;
            zoomSize /= 1.2;
            zoom();
        }
        function zoom()
        {
           if (browser.indexOf("firefox") != -1) { //브라우저가 firefox일때
            target.style.webkitTransform =    'scale('+seemSize+')';  
            target.style.webkitTransformOrigin = '50% 0 0'; //늘리고 줄였을때위치, 
            target.style.msTransform =   'scale('+seemSize+')'; 
            target.style.msTransformOrigin = '50% 0 0';
            target.style.transform = 'scale('+seemSize+')';
            target.style.transformOrigin='50% 0 0';
            target.style.OTransform = 'scale('+seemSize+')';
            target.style.OTransformOrigin='50% 0 0';
           }else{
            target.style.zoom = zoomSize;
            }
        }
    if (obj.zoomIn != null) {
        obj.zoomIn.addEventListener('click', zoomIn);
    }
    if (obj.zoomOut != null) {
        obj.zoomOut.addEventListener('click', zoomOut);
    }
}
 
document.addEventListener('DOMContentLoaded', function () {
    zoomInOut({
        target: document.querySelector('#content'),
        zoomIn: document.querySelector('.zoomin'),
        zoomOut: document.querySelector('.zoomOut'),
        clickLimit: 5
    });
});
</script>
 
<div class="area-zoom-btn">
  <div class="zoom-btn">
    <button class="zoom zoomin">확대</button>
      <i>글자크기</i>
      <button class="zoom zoomout">축소</button>
  </div>
</div>
<section id="content">
  <div class="title">
    <h2>부동산 컨설팅</h2>
    <p>고객의 부동산 자산 또는 매입 예정 부지 개발 솔루션을 제공합니다.</p>
  </div>
 
<div class="info">
  <ul>
    <li>주거용 부동산</li>
    <li>업무용 부동산</li>
    <li>상업용 부동산</li>
  </ul>
</div>
</section>
답변을 작성하시기 전에 로그인 해주세요.
전체 0
QA 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT