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

151 lines
4.2 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/light-gallery/css/lightgallery.css" />
<link rel="stylesheet" href="public/video-js.css" />
<link rel="stylesheet" href="public/theme.css" />
</head>
<body>
<header>
<h1>Photo album</h1>
<h2></h2>
</header>
<section id="sidebar">
<nav>
<!-- This album -->
<a href="index.html">
Home<span class="count">24</span>
</a>
<!-- And nested album -->
<!-- This album -->
<a href="index-photos.html">
-
photos<span class="count">3</span>
</a>
<!-- And nested album -->
<!-- This album -->
<a href="index-videos.html">
-
videos<span class="count">2</span>
</a>
<!-- And nested album -->
<!-- This album -->
<a href="index-captions.html">
-
captions<span class="count">3</span>
</a>
<!-- And nested album -->
<!-- This album -->
<a href="index-rotations.html">
-
rotations<span class="count">16</span>
</a>
<!-- And nested album -->
</nav>
</section>
<section id="content">
<nav class="breadcrumbs">
<a class="breadcrumb-item" href="index.html">Home </a><span class="breadcrumb-item active">videos</span>
</nav>
<ul id="albums">
</ul>
<ul id="gallery">
<li data-html="#media23"
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="#media24"
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>
<div id="videos">
<div id="media23" 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="media24" 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>
</section>
<!-- 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() {
$("#gallery").lightGallery({
thumbWidth: 80,
controls: true,
loop : false,
download: true,
counter: true,
videojs: true
});
});
</script>
</body>
</html>