Jump to content

diegomassaro

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by diegomassaro

  1. Hello, I attached the code that I used for the slider. I'm using p5.js.

    It doesn't work if I insert separately the JS code in the sketch.js page.

    HTML:

      <input type="range" min="1" max="100" value="50" class="slider" id="myRange">

      <p id="demo">Value: </p>

    Javascript:

    var slider = document.getElementById("myRange");
    var output = document.getElementById("demo");

    slider.oninput = function() {
      output.style.fontSize = slider.value + "px";
    }

     

    Thank you all!

×
×
  • Create New...