KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
videox5js
★ 9
Open GitHub ↗
HTML5 Video Player
Download README (.md)
Explore Similar Repositories
effective-api-design-with-scala-types
:
Resources supporting my talk at the Scala eXchange 2014
gen_cop
:
Generic Connection-Oriented Protocol Behaviour (experimentail)
easy_cache
:
Easy in-memory key-value cache for single-threaded environments
flarum-i18n-zh
:
Flarum 国际化语言包
SmartThings_RainMachine
:
Integrate SmartThings with RainMachine
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
videox5js
?
Download (.md)
#Videox5js ##Drop me a line if your interested to contribute[](https://gitter.im/brendonco/videox5js?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) Videox5js is a web video player for HTML5. The theme of the video player controls can be customized. This project was started Q4 2014. ##Quick start Simply add these includes to your document's ```<head>```: ``` <link rel="stylesheet" href="./css/template/default/style.css"> ``` Add videox5.js library before your document's </body>: ``` <script src="./lib/videox5.js"></script> ``` Then, whenever you want to use Videox5.js you can simply use the <video> element. ``` <video id="video" name="media" poster="http://media.w3.org/2010/05/sintel/poster.png" width="640" height="365"> <source src="trailer.mp4" type="video/mp4"> <sourc src="trailer.webm" type="video/webm"> <sourc src="trailer.ogg" type="video/ogg"> <p>Your browser doesn't support HTML5 video.</p> </video> ``` Video Controls - The video object provides methods, properties and events that you can use to control playback from JavaScript. ``` <div id="video-controls"> <button type="button" id="play-pause" class="play">Play</button> <input type="range" id="seek-bar" value="0"> <button type="button" id="mute">Mute</button> <input type="range" id="volume-bar" min="0" max="1" step="0.1" value="1"> <button type="button" id="full-screen">Full-Screen</button> </div> ``` ##Screenshot   ##License Videox5js is licensed under the Apache License [View license file](http://www.gnu.org/licenses/lgpl.txt) Copyright 2017