Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="demo-container">
  <div class="start-message">CLICK TO START</div>
  <button type="button" name="button" class="button-color" id="filterButton">Click Me</button>
</div>
<div class="distance"></div>
              
            
!

CSS

              
                @import url(https://fonts.googleapis.com/css?family=Oswald|Merriweather);

body {
  background: #f2e0bd;
  font-family: "Oswald", Helvetica, Arial, sans-serif;
}

#filterButton {
  display: none;
}

.start-message {
  position: absolute;
  text-align: left;
  width: 100%;
  height: 150px;
  padding-top: 10px;
  padding-left: 10px;
  cursor: pointer;
}
              
            
!

JS

              
                $(document).ready(loadSounds);

var soundProximity = "Proximity";
var soundClick = "Click";
var $element = $("#filterButton");
var $distance = $(".distance");
var filterNode;
var filterMultiplier = 18; // how fast will filter adjust?
var filterOffset = 2500; // when will filter start adjusting?
var looping; // state for button event handling

function loadSounds() {
  createjs.Sound.on("fileload", handleLoad, this);
  // register sounds, which will preload automatically
  createjs.Sound.registerSound("https://s3.amazonaws.com/nrf-codepen-assets/drone.mp3", soundProximity);
  createjs.Sound.registerSound("https://s3.amazonaws.com/nrf-codepen-assets/water-drop.mp3", soundClick);
}

function handleLoad(evt) {

  // create filter in existing context, connect to context destination
  var context = createjs.Sound.activePlugin.context;
  filterNode = context.createBiquadFilter();
  filterNode.type = "lowpass";
  filterNode.frequency.value = 20000;
  filterNode.connect(context.destination);

  // attach filter node to our existing dynamicsCompressorNode, which was connected to context.destination
  var dynamicsNode = createjs.Sound.activePlugin.dynamicsCompressorNode;
  dynamicsNode.disconnect();
  dynamicsNode.connect(filterNode);

  // wrap our sound playing in a click event so we can be played on mobile devices
  $(".start-message").click(revealDemo);
}

function revealDemo() {
  $("#filterButton").show();
  $(".start-message").hide();

  looping = true;
  $("#filterButton").click(handleButtonClick); // add button's event handler

  // proximity check
  function mousedistance(mX, mY) {

    var distance = calculateDistance($element, mX, mY);
    var filterValue = (filterOffset - (filterMultiplier * distance));
    filterNode.frequency.value = filterValue > 0 ? filterValue : 0;
    // testing code
    // $distance.text(distance);
 };
  
  // add proximity-filter handler
  $(document).mousemove( function (e) {
    mousedistance(e.pageX, e.pageY);
  });
  
  startLoopPlayback();
}

function handleButtonClick(e) {
  e.stopImmediatePropagation();   // prevent double clicks
  if (looping) {
    // stopping the soundInstance doesn't seem to work when you have a filter node
    // connected - you have to stop everything.
    createjs.Sound.stop();
    createjs.Sound.play(soundClick);
    $element.text("Restart");
    looping = false;
  } else {
    startLoopPlayback();
    $element.text("Click Me");
    looping = true;
  }
}

function startLoopPlayback() {
  filterNode.frequency.value = 200;
  createjs.Sound.play(soundProximity, {loop: 20});
}

function calculateDistance(elem, mouseX, mouseY) {
  return Math.floor(Math.sqrt(Math.pow(mouseX - (elem.offset().left + (elem
    .width() / 2)), 2) + Math.pow(mouseY - (elem.offset().top + (elem
    .height() / 2)), 2)));
}
              
            
!
999px

Console