AndrewJBateman / html5-video-player

:clipboard: Create video player in html5, Wes Bos Javascript30 tutorial

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

⚑ Javascript HTML5 Video Player

GitHub repo size GitHub pull requests GitHub Repo stars GitHub last commit

πŸ“„ Table of contents

πŸ“š General info

  • Tutorial Code to play video in HTML.

πŸ“· Screenshots

Example screenshot.

πŸ“Ά Technologies

πŸ’Ύ Setup

  • Open index.html in browser. If any code is changed the browser needs to be refreshed.

πŸ’» Code Examples

  • function to show play or pause button.
function updateButton() {
  console.log('update play/pause button');
  const icon = this.paused? 'β–Ί' : '❚ ❚';
  toggle.textContent = icon;
}

πŸ†’ Features

  • Controls for video volume and play-back speed.

πŸ“‹ Status & To-Do List

  • Status: Working.
  • To-Do: Could add labels for video volume and play-back speed.

πŸ‘ Inspiration

πŸ“ License

  • N/A

βœ‰οΈ Contact

About

:clipboard: Create video player in html5, Wes Bos Javascript30 tutorial


Languages

Language:CSS 46.4%Language:JavaScript 34.4%Language:HTML 19.2%