Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div class="wrapper">
    <div class="text">
      <span class="float"><a class="more">more</a></span>
      잔소리를 두루 늘어놓다가 남이 들을까봐
      손으로 입을 틀어막고는 그 속에서 깔깔댄다.
      별로 우스울 것도 없는데 날씨가 풀리더니
      이 놈의 계집애가 미쳤나 하고 의심하였다.
    </div>
  </div>
  <div class="controls">
    Line count: 
    <button onClick="inc(1)">+</button>
    <span id="count">2</span>
    <button onClick="inc(-1)">-</button>
  </div>
  <script>
    let num = 2;
    function inc(n) {
      num = Math.min(Math.max(1, num + n), 5);
      document.querySelector('.wrapper').style.setProperty('--line-count', num);
      document.querySelector('#count').innerText = num;
    }
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers