Nuevo plugin features "Rewind" and "Forward" buttons to rewind or forward video 10 sconds in time.
By default only forward button is enabled and displayed. To show/hide rewind and forward button you can use simple Nuevo plugin options. Check Nuevo plugin options code below.
<script>
<!--Initialize player + nuevo and hotkeys plugins-->
var player = videojs('player_1');
player.nuevo({
title: "Nuevo plugin for VideoJs Player",
buttonForward: true
});
</script>
Rewind button is enabled by default, to disable it set appropriate option to false.
Rewind and Forward time value is 10 seconds by default. It is possible to define other than "10" time value. In example below Rewind/Forward time value is set to 20 seconds.
<script>
<!--Initialize player + nuevo and hotkeys plugins-->
var player = videojs('player_1');
player.nuevo({
buttonForward: true,rewindforward:20
});
</script>