Last Updated: January 28, 2019
·
843
· steveniseki

Octave library of UI sounds for IOS mobile devices

Octave is as it states a free library of UI sounds for IOS mobile devices.

I have been using it in some IOS projects and it really helps to give users feedback on touching and swiping on objects.

A quick example of using html5 audio in a mobile web app:

html

<audio id="audio" src="sounds/button-click.mp3"></audio>

JavaScript

document.getElementById('audio').play();

or you could use Cordova media plugin for a similar effect.