Liking cljdoc? Tell your friends :D
ClojureScript only.

web.accelerometer.Accelerometer

The Accelerometer interface of the Sensor APIs provides on each the acceleration applied to the device along all three axes.

The Accelerometer interface of the Sensor APIs provides on each
the acceleration applied to the device along all three axes.
raw docstring

constructorcljs

(constructor & args)

Constructor.

The Accelerometer constructor creates a new web.accelerometer.Accelerometer object which returns the acceleration of the device along all three axes at the time it is read.

options Optional Options are as follows:

frequency: The desired number of times per second a sample should be taken, meaning the number of times per second that sensor.onerror will be called. A whole number or decimal may be used, the latter for frequencies less than a second. The actual reading frequency depends device hardware and consequently may be less than requested. referenceFrame: Either 'device' or 'screen'. The default is 'device'.

See also: https://developer.mozilla.org/en-US/docs/Web/API/Accelerometer/Accelerometer

Constructor.

The Accelerometer constructor creates a new `web.accelerometer.Accelerometer` object which returns the acceleration of the device along all three axes at the time it is read.

options Optional
Options are as follows:

frequency: The desired number of times per second a sample should be taken, meaning the number of times per second that `sensor.onerror` will be called. A whole number or decimal may be used, the latter for frequencies less than a second. The actual reading frequency depends device hardware and consequently may be less than requested.
referenceFrame: Either 'device' or 'screen'. The default is 'device'.

See also: `https://developer.mozilla.org/en-US/docs/Web/API/Accelerometer/Accelerometer`
sourceraw docstring

xcljs

(x this)

Property.

[Read Only]

The x read-only property of the web.accelerometer.Accelerometer returns a double precision integer containing the acceleration the device along the its x axis.

var xAcceleration = accelerometer.x

See also: https://developer.mozilla.org/en-US/docs/Web/API/Accelerometer/x

Property.

[Read Only]

The x read-only property of the `web.accelerometer.Accelerometer`
returns a double precision integer containing the acceleration
the device along the its x axis.

`var xAcceleration = accelerometer.x`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/Accelerometer/x`
sourceraw docstring

ycljs

(y this)

Property.

[Read Only]

The y read-only property of the web.accelerometer.Accelerometer returns a double precision integer containing the acceleration the device along the its y axis.

var yAcceleration = accelerometer.y

See also: https://developer.mozilla.org/en-US/docs/Web/API/Accelerometer/y

Property.

[Read Only]

The y read-only property of the `web.accelerometer.Accelerometer`
returns a double precision integer containing the acceleration
the device along the its y axis.

`var yAcceleration = accelerometer.y`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/Accelerometer/y`
sourceraw docstring

zcljs

(z this)

Property.

[Read Only]

The z read-only property of the web.accelerometer.Accelerometer returns a double precision integer containing the acceleration the device along the its z axis.

var zAcceleration = accelerometer.z

See also: https://developer.mozilla.org/en-US/docs/Web/API/Accelerometer/z

Property.

[Read Only]

The z read-only property of the `web.accelerometer.Accelerometer`
returns a double precision integer containing the acceleration
the device along the its z axis.

`var zAcceleration = accelerometer.z`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/Accelerometer/z`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close