You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thumbsup/docs/index-videos.html

209 lines
6.7 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<title>Photo album - videos</title>
<link rel="stylesheet" href="public/reset.css" />
<link rel="stylesheet" href="public/style.css" />
<link rel="stylesheet" href="public/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="public/light-gallery/css/lightgallery.css" />
<link rel="stylesheet" href="public/video-js.css" />
</head>
<body>
<div id="wrapper">
<!--
Gallery title
-->
<header>
<h1>
<label for="hamburger" class="hamburger-label noselect" role="button">
<i class="fa fa-navicon"></i>
</label>
Photo album
</h1>
</header>
<div id="container">
<!--
Sidebar with album hierarchy
-->
<input id="hamburger" class="hamburger-checkbox" type="checkbox" />
<nav id="sidebar">
<ul>
<li>
<!-- This album -->
<a href="index.html">
<i class="fa fa-folder-o"></i>
Home<span class="count">24</span>
</a>
<!-- And nested album -->
<ul>
<li>
<!-- This album -->
<a href="index-photos.html">
<i class="fa fa-photo"></i>
photos<span class="count">3</span>
</a>
<!-- And nested album -->
<ul>
</ul>
</li>
<li>
<!-- This album -->
<a href="index-videos.html">
<i class="fa fa-photo"></i>
videos<span class="count">2</span>
</a>
<!-- And nested album -->
<ul>
</ul>
</li>
<li>
<!-- This album -->
<a href="index-captions.html">
<i class="fa fa-photo"></i>
captions<span class="count">3</span>
</a>
<!-- And nested album -->
<ul>
</ul>
</li>
<li>
<!-- This album -->
<a href="index-rotations.html">
<i class="fa fa-folder-o"></i>
rotations<span class="count">16</span>
</a>
<!-- And nested album -->
<ul>
<li>
<!-- This album -->
<a href="index-rotations-landscape.html">
<i class="fa fa-photo"></i>
landscape<span class="count">8</span>
</a>
<!-- And nested album -->
<ul>
</ul>
</li>
<li>
<!-- This album -->
<a href="index-rotations-portrait.html">
<i class="fa fa-photo"></i>
portrait<span class="count">8</span>
</a>
<!-- And nested album -->
<ul>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</nav>
<!--
Main gallery panel
-->
<section id="content">
<!--
Breadcrumbs of parent albums
-->
<nav class="breadcrumbs">
<a class="breadcrumb-item" href="index.html">Home</a>&nbsp;/&nbsp;<a class="breadcrumb-item" href="index-videos.html">videos</a>
</nav>
<!--
Nested albums, if any
-->
<ul id="albums">
</ul>
<!--
All photos and videos
-->
<ul id="media">
<li data-html="#media7"
data-poster="media/large/videos/countdown.jpg"
data-download-url="">
<a href="">
<img src="media/thumbs/videos/countdown.jpg"
width=""
height="120"
alt="countdown.mp4" />
</a>
<img class="video-overlay" src="public/play.png" />
</li>
<li data-html="#media8"
data-poster="media/large/videos/momentum.jpg"
data-download-url="">
<a href="">
<img src="media/thumbs/videos/momentum.jpg"
width=""
height="120"
alt="momentum.m2ts" />
</a>
<img class="video-overlay" src="public/play.png" />
</li>
</ul>
</section>
</div>
</div>
<!-- Video loader -->
<div id="videos">
<div id="media7" style="display:none;">
<video class="lg-video-object lg-html5 video-js vjs-default-skin" preload="none" controls>
<source src="media/large/videos/countdown.mp4" type="video/mp4" />
Your browser does not support HTML5 video
</video>
</div>
<div id="media8" style="display:none;">
<video class="lg-video-object lg-html5 video-js vjs-default-skin" preload="none" controls>
<source src="media/large/videos/momentum.mp4" type="video/mp4" />
Your browser does not support HTML5 video
</video>
</div>
</div>
<!-- jQuery -->
<script src="public/jquery.min.js"></script>
<!-- VideoJS -->
<script src="public/video.js"></script>
<!-- LightGallery -->
<script src="public/light-gallery/js/lightgallery.js"></script>
<script src="public/light-gallery/js/lg-autoplay.js"></script>
<script src="public/light-gallery/js/lg-pager.js"></script>
<script src="public/light-gallery/js/lg-thumbnail.js"></script>
<script src="public/light-gallery/js/lg-video.js"></script>
<script>
$(document).ready(function() {
$("#media").lightGallery({
thumbWidth: 80,
controls: true,
loop : false,
download: true,
counter: true,
videojs: true
});
});
</script>
</body>
</html>