Circular menu with toggle button created only with css. You can configure the menu size, number of items, color of toggle button and links icons.
Forked from Hadar Weiss's Pen Pure CSS Circle Menu.
Forked from Hadar Weiss's Pen Pure CSS Circle Menu.
| app.get('/video', function(req, res) { | |
| const path = 'assets/sample.mp4' | |
| const stat = fs.statSync(path) | |
| const fileSize = stat.size | |
| const range = req.headers.range | |
| if (range) { | |
| const parts = range.replace(/bytes=/, "").split("-") | |
| const start = parseInt(parts[0], 10) | |
| const end = parts[1] | |
| ? parseInt(parts[1], 10) |