# Seek Buttons
ByteArk Player can add seek buttons to the control bar so viewers can jump 10 seconds forward or backward. Enable them by setting seekButtons in options.
# Seek Buttons display

# Options
| Name | Type | Required | Description |
|---|---|---|---|
| seekButtons | Object | No | Configure the seek buttons |
| seekButtons.forward | Boolean | No | Show the seek-forward button (default false) |
| seekButtons.back | Boolean | No | Show the seek-backward button (default false) |
# Example
<!doctype html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<div id="video-player"></div>
<script src="https://byteark-sdk.cdn.byteark.com/player/v2/byteark-player.min.js"></script>
<script>
var player = bytearkPlayer('video-player', {
fluid: true,
seekButtons: {
forward: true,
back: true,
},
sources: [{
title: 'Big Buck Bunny',
src: 'https://byteark-playertzxedwv.stream-playlist.byteark.com/streams/TZyZheqEJUwC/playlist.m3u8',
type: 'application/x-mpegURL'
}]
});
</script>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24