W3cubDocs

/DOM

PannerNode.constructor

The PannerNode() constructor creates a new PannerNode object instance.

Syntax

var myPanner = new PannerNode(context, options);

Parameters

context
A BaseAudioContext representing the audio context you want the node to be associated with.
options Optional
A PannerOptions dictionary object defining the properties you want the PannerNode to have (It also inherits the options defined in the AudioNodeOptions dictionary.):

Example

var ctx = new AudioContext();

var options = {
  positionX : 1,
  maxDistance: 5000
}

var myPanner = new PannerNode(ctx, options);

Specifications

Specification Status Comment
Web Audio API
The definition of 'PannerNode' in that specification.
Working Draft

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 55.0 No support No support

29
28 behind pref

No support
Feature Android Android Webview Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile Chrome for Android
Basic support No support 55.0 No support No support (Yes) No support 55.0

© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PannerNode/PannerNode