-
Do an audio add-on, so adding fast & responsive audio to components is as easy as possible.
- "fast" - use the Web Audio API, cache the sounds up front, and only fall back to HTML5 audio if need be…
-
-
```
import shutterSound from './shutter.mp3';
class SomePage extends Component {
const shutterSnap = new UIfx(shutterSound);
handleClick = () => {
shutterSnap.play();
}
render…
-
Get this error when playing a notification sound:
> play() can only be initiated by a user gesture
Is this for all sounds?
Also I'm curious how to clean up sounds when I'm done with them, the…
-
I have this sound file definition:
this.kaching = new UIfx(kaching, {
volume: 0.4, // number between 0.0 ~ 1.0
throttleMs: 40
});
I also have an event handler which plays th…
-
I did exactly like the basic example and the advanced (http://www.wle8300.com/uifx-demo/) and it throws this error:
Uncaught Error: "Volume" must be an number between 0.0 and 1.0
-
I am using uifx version 2.0.3 in a React project.
Sometimes (not always), for some reason I am getting the following error and the audio doesn't get played:
![image](https://user-images.githubuser…
-
Are the types for this lib?
skube updated
4 years ago
-
I'm on an iPad Pro on IOS12 and loaded the site using Chrome browser. The page loaded but the audio did not play on the button press action.
I am on a plane and the network a bit squiffy but page l…
-
## Specifications
- jGnash Version: 3.0.1
- Operating System: MacOS 10.14.4
- Java Version:
java version "11.0.2" 2019-01-15 LTS
Java(TM) SE Runtime Environment 18.9 (build 11.0.2+9-LTS)…