Videogular - Simplest Example

Size
2,280 Kb
Views
28,336

How do I make an videogular - simplest example?

What is a videogular - simplest example? How do you make a videogular - simplest example? This script and codes were developed by Two Fucking Developers on 14 October 2022, Friday.

Videogular - Simplest Example Previews

Videogular - Simplest Example - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Videogular - Simplest Example</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div ng-app="myApp">
<div ng-controller="HomeCtrl as controller" class="videogular-container">	<videogular vg-theme="controller.config.theme.url">	<vg-media vg-src="controller.config.sources" vg-tracks="controller.config.tracks" vg-native-controls="true">	</vg-media>	</videogular>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular-sanitize.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/videogular/videogular.js"></script> <script src="js/index.js"></script>
</body>
</html>

Videogular - Simplest Example - Script Codes CSS Codes

html, body {	margin: 0;	padding: 0;
}
.videogular-container {	width: 100%;	height: 320px;	margin: auto;	overflow: hidden;
}
@media (min-width: 1200px) {	.videogular-container {	width: 1170px;	height: 658.125px;	}	.videogular-container.audio {	width: 1170px;	height: 50px;	}
}
@media (min-width: 992px) and (max-width: 1199px) {	.videogular-container {	width: 940px;	height: 528.75px;	}	.videogular-container.audio {	width: 940px;	height: 50px;	}
}
@media (min-width: 768px) and (max-width: 991px) {	.videogular-container {	width: 728px;	height: 409.5px;	}	.videogular-container.audio {	width: 728px;	height: 50px;	}
}
/*# sourceMappingURL=main.css.map */

Videogular - Simplest Example - Script Codes JS Codes

'use strict';
angular.module('myApp',	[	"ngSanitize",	"com.2fdevs.videogular"	]	)	.controller('HomeCtrl',	function ($sce) {	this.config = {	preload: "none",	sources: [	{src: $sce.trustAsResourceUrl("http://static.videogular.com/assets/videos/videogular.mp4"), type: "video/mp4"},	{src: $sce.trustAsResourceUrl("http://static.videogular.com/assets/videos/videogular.webm"), type: "video/webm"},	{src: $sce.trustAsResourceUrl("http://static.videogular.com/assets/videos/videogular.ogg"), type: "video/ogg"}	],	tracks: [	{	src: "http://www.videogular.com/assets/subs/pale-blue-dot.vtt",	kind: "subtitles",	srclang: "en",	label: "English",	default: ""	}	],	theme: {	url: "https://unpkg.com/[email protected]/dist/themes/default/videogular.css"	}	};	}	);
Videogular - Simplest Example - Script Codes
Videogular - Simplest Example - Script Codes
Home Page Home
Developer Two Fucking Developers
Username 2fdevs
Uploaded October 14, 2022
Rating 3
Size 2,280 Kb
Views 28,336
Do you need developer help for Videogular - Simplest Example?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Two Fucking Developers (2fdevs) Script Codes
Create amazing SEO content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!