https://github.com/andrewjbateman/html5-video-player
:clipboard: Create video player in html5, Wes Bos Javascript30 tutorial
https://github.com/andrewjbateman/html5-video-player
css embed html5 javascript javascript30 tutorial-code video video-player
Last synced: 3 months ago
JSON representation
:clipboard: Create video player in html5, Wes Bos Javascript30 tutorial
- Host: GitHub
- URL: https://github.com/andrewjbateman/html5-video-player
- Owner: AndrewJBateman
- Created: 2018-11-17T10:52:37.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-03-11T17:07:59.000Z (almost 4 years ago)
- Last Synced: 2025-05-17T01:34:27.790Z (8 months ago)
- Topics: css, embed, html5, javascript, javascript30, tutorial-code, video, video-player
- Language: CSS
- Homepage:
- Size: 5.78 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# :zap: Javascript HTML5 Video Player
* Wes Bos Youtube Tutorial: [Custom HTML5 Video Player - #JavaScript30 11/30](https://www.youtube.com/watch?v=yx-HYerClEA).
* **Note:** to open web links in a new window use: _ctrl+click on link_




## :page_facing_up: Table of contents
* [:zap: Javascript HTML5 Video Player](#zap-javascript-html5-video-player)
* [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)
* [:books: General info](#books-general-info)
* [:camera: Screenshots](#camera-screenshots)
* [:signal_strength: Technologies](#signal_strength-technologies)
* [:floppy_disk: Setup](#floppy_disk-setup)
* [:computer: Code Examples](#computer-code-examples)
* [:cool: Features](#cool-features)
* [:clipboard: Status & To-Do List](#clipboard-status--to-do-list)
* [:clap: Inspiration](#clap-inspiration)
* [:file_folder: License](#file_folder-license)
* [:envelope: Contact](#envelope-contact)
## :books: General info
* Tutorial Code to play video in HTML.
## :camera: Screenshots
.
## :signal_strength: Technologies
* Ran in Google Chrome browser with: [Javascript engine V8 9.9 for Windows (x64)](https://v8.dev/).
## :floppy_disk: Setup
* Open index.html in browser. If any code is changed the browser needs to be refreshed.
## :computer: Code Examples
* function to show play or pause button.
```javascript
function updateButton() {
console.log('update play/pause button');
const icon = this.paused? '►' : '❚ ❚';
toggle.textContent = icon;
}
```
## :cool: Features
* Controls for video volume and play-back speed.
## :clipboard: Status & To-Do List
* Status: Working.
* To-Do: Could add labels for video volume and play-back speed.
## :clap: Inspiration
* Wes Bos Youtube Tutorial: [Custom HTML5 Video Player - #JavaScript30 11/30](https://www.youtube.com/watch?v=yx-HYerClEA).
## :file_folder: License
* N/A
## :envelope: Contact
* Repo created by [ABateman](https://github.com/AndrewJBateman), email: gomezbateman@yahoo.com