2015-05-10 14:06:04 -04:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2015-05-11 17:24:26 -04:00
|
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
|
2015-05-10 14:06:04 -04:00
|
|
|
<script src="galleria/galleria-1.4.2.min.js"></script>
|
|
|
|
<script src="galleria/themes/classic/galleria.classic.min.js"></script>
|
|
|
|
<link rel="stylesheet" href="galleria/themes/classic/galleria.classic.css">
|
|
|
|
<style>
|
|
|
|
body{ margin: 0; padding: 0; background: #000; }
|
|
|
|
div.galleria{ width: 100%; height: 100%; background: #000; position: absolute; top: 0; bottom: 0; }
|
|
|
|
div.galleria-thumbnails { margin: auto;}
|
|
|
|
</style>
|
|
|
|
<title>Getting Started</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="galleria">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
var data = [
|
|
|
|
{ link: 'https://www.youtube.com/watch?v=RRq2_Pjyko8&index=1&list=PLdPvEJhzxLMCEJJpb1mJtVkOpS7FfALnd', image: 'images/rename.png', thumb: 'images/rename.thumb.png' },
|
|
|
|
{ link: 'https://www.youtube.com/watch?v=btNSv7AnMMw&index=2&list=PLdPvEJhzxLMCEJJpb1mJtVkOpS7FfALnd', image: 'images/episodes.png', thumb: 'images/episodes.thumb.png' },
|
|
|
|
{ link: 'https://www.youtube.com/watch?v=q-oZ_hovsTY&index=3&list=PLdPvEJhzxLMCEJJpb1mJtVkOpS7FfALnd', image: 'images/subtitle-hash-lookup.png', thumb: 'images/subtitle-hash-lookup.thumb.png' },
|
|
|
|
{ link: 'https://www.youtube.com/watch?v=R80tKtHf4zw&index=4&list=PLdPvEJhzxLMCEJJpb1mJtVkOpS7FfALnd', image: 'images/subtitle-search.png', thumb: 'images/subtitle-search.thumb.png' },
|
2015-05-11 17:18:24 -04:00
|
|
|
{ link: 'https://www.youtube.com/watch?v=4KWkSPr3fQY&index=5&list=PLdPvEJhzxLMCEJJpb1mJtVkOpS7FfALnd', image: 'images/sfv.png', thumb: 'images/sfv.thumb.png' }
|
2015-05-10 14:06:04 -04:00
|
|
|
];
|
2015-05-11 17:18:24 -04:00
|
|
|
|
|
|
|
if (location.hash == '#mas') {
|
|
|
|
data.splice(1, 0, { image: 'images/permissions.png', thumb: 'images/permissions.thumb.png' })
|
|
|
|
}
|
|
|
|
|
2015-05-10 14:06:04 -04:00
|
|
|
Galleria.run('.galleria', {
|
|
|
|
dataSource: data,
|
|
|
|
maxScaleRatio: 1,
|
|
|
|
youtube: {
|
|
|
|
VQ: 'HD1080'
|
|
|
|
},
|
|
|
|
popupLinks: true
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|