3.13.2 • Published 3 years ago

@inlasningstjanst/begreppa-video v3.13.2

Weekly downloads
183
License
UNLICENSED
Repository
-
Last release
3 years ago

Begreppa video player

Begreppa video player is a module for showing videos from Inlasningstjanst.se

Installation

Use the package manager npm to install Begreppa video player.

npm install @inlasningstjanst/begreppa-video

Usage

Javascript

// If you use ES Modules
import  VideoContainer  from  '@inlasningstjanst/begreppa-video'

// You'll need a css-loader to import
// the css for the videoplayer for example: "sass-loader"
import  '@inlasningstjanst/begreppa-video/dist/style.css'

var  authToken  =  'token'
var  elementID  =  'film_container'
var  domain  =  'xxxxxxxx.inlasningstjanst.se'
var  videoID  =  1
var  video  =  new  VideoContainer()

video.init(authToken,  videoID,  domain,  elementID)

// Video can also be initialized with an optional parameter "options"

// Example
var options = {
    'extraButtons': ['theatre','subtitleSize'],
    'theatreContainerID': 'theatre_container', 
    'disabledLanguageTooltip': 'Example text'
}
// 'theatreContainerID' must be defined if 'extraButtons' contains 'theatre'
video.init(authToken,  videoID,  domain,  elementID, options)

HTML

<!DOCTYPE  html>
<html>
	<script  type="text/javascript"  src="path/to/js"></script>
	<link  rel="stylesheet"  type="text/css"  href="path/to/css">
	<body>
		<div  id="film_container"></div>
	</body>
</html>

HTML (with theatreContainerID)

<!DOCTYPE  html>
<html>
	<script  type="text/javascript"  src="path/to/js"></script>
	<link  rel="stylesheet"  type="text/css"  href="path/to/css">
	<body>
		<div id="theatre_container">
			<div id="film_container"></div>
			<div id="optional_additional_container">For example a list of films</div>
		</div>
	</body>
</html>
3.13.2

3 years ago

3.13.1

3 years ago

3.13.0

4 years ago

3.12.1

4 years ago

3.12.0

4 years ago

3.11.11

4 years ago

3.11.10

4 years ago

3.11.9

4 years ago

3.11.8

4 years ago

3.11.7

4 years ago

3.11.6

4 years ago

3.11.5

4 years ago

3.11.4

5 years ago

3.11.3

5 years ago

3.11.1

5 years ago

3.11.0

5 years ago

3.10.9

5 years ago

3.10.8

5 years ago

3.10.7

5 years ago

3.10.6

5 years ago

3.10.5

5 years ago

3.10.4

5 years ago

3.10.3

5 years ago

3.10.2

5 years ago

3.10.1

5 years ago

3.10.0

5 years ago