Skip to content

Instantly share code, notes, and snippets.

@enappd
Created June 27, 2019 11:44
Ionic 4 music - FF and Rewind
controlSeconds(action) {
const step = 5;
const numberRange = this.position;
switch (action) {
case 'back':
this.position = numberRange < step ? 0.001 : numberRange - step;
break;
case 'forward':
this.position = numberRange + step < this.duration ? numberRange + step : this.duration;
break;
default:
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment