-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.js
77 lines (70 loc) · 2.8 KB
/
demo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
* Bootstrap Image Gallery JS Demo 3.0.0
* https://github.com/blueimp/Bootstrap-Image-Gallery
*
* Copyright 2013, Sebastian Tschan
* https://blueimp.net
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/MIT
*/
/*jslint unparam: true */
/*global window, document, blueimp, $ */
$(function () {
'use strict';
$('#borderless-checkbox').on('change', function () {
var borderless = $(this).is(':checked');
$('#blueimp-gallery').data('useBootstrapModal', !borderless);
$('#blueimp-gallery').toggleClass('blueimp-gallery-controls', borderless);
});
$('#fullscreen-checkbox').on('change', function () {
$('#blueimp-gallery').data('fullScreen', $(this).is(':checked'));
});
$('#image-gallery-button').on('click', function (event) {
event.preventDefault();
blueimp.Gallery($('#links a'), $('#blueimp-gallery').data());
});
$('#video-gallery-button').on('click', function (event) {
event.preventDefault();
blueimp.Gallery([
{
title: 'Sintel',
href: 'http://media.w3.org/2010/05/sintel/trailer.mp4',
type: 'video/mp4',
poster: 'http://media.w3.org/2010/05/sintel/poster.png'
},
{
title: 'Big Buck Bunny',
href: 'http://upload.wikimedia.org/wikipedia/commons/7/75/' +
'Big_Buck_Bunny_Trailer_400p.ogg',
type: 'video/ogg',
poster: 'http://upload.wikimedia.org/wikipedia/commons/thumb/7/70/' +
'Big.Buck.Bunny.-.Opening.Screen.png/' +
'800px-Big.Buck.Bunny.-.Opening.Screen.png'
},
{
title: 'Elephants Dream',
href: 'http://upload.wikimedia.org/wikipedia/commons/transcoded/8/83/' +
'Elephants_Dream_%28high_quality%29.ogv/' +
'Elephants_Dream_%28high_quality%29.ogv.360p.webm',
type: 'video/webm',
poster: 'http://upload.wikimedia.org/wikipedia/commons/thumb/9/90/' +
'Elephants_Dream_s1_proog.jpg/800px-Elephants_Dream_s1_proog.jpg'
},
{
title: 'LES TWINS - An Industry Ahead',
href: 'http://www.youtube.com/watch?v=zi4CIXpx7Bg',
type: 'text/html',
youtube: 'zi4CIXpx7Bg',
poster: 'http://img.youtube.com/vi/zi4CIXpx7Bg/0.jpg'
},
{
title: 'KN1GHT - Last Moon',
href: 'http://vimeo.com/73686146',
type: 'text/html',
vimeo: '73686146',
poster: 'http://b.vimeocdn.com/ts/448/835/448835699_960.jpg'
}
], $('#blueimp-gallery').data());
});
});