%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.248 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/eoffice/frontend/web/assets/7bb46270/js/ |
Upload File : |
/* * blueimp Gallery Demo JS * https://github.com/blueimp/Gallery * * Copyright 2013, Sebastian Tschan * https://blueimp.net * * Licensed under the MIT license: * http://www.opensource.org/licenses/MIT */ /* global blueimp, $ */ $(function () { 'use strict'; // Load demo images from flickr: $.ajax({ // Flickr API is SSL only: // https://code.flickr.net/2014/04/30/flickr-api-going-ssl-only-on-june-27th-2014/ url: 'https://api.flickr.com/services/rest/', data: { format: 'json', method: 'flickr.interestingness.getList', api_key: '7617adae70159d09ba78cfec73c13be3' // jshint ignore:line }, dataType: 'jsonp', jsonp: 'jsoncallback' }).done(function (result) { var carouselLinks = [], linksContainer = $('#links'), baseUrl; // Add the demo images as links with thumbnails to the page: $.each(result.photos.photo, function (index, photo) { baseUrl = 'https://farm' + photo.farm + '.static.flickr.com/' + photo.server + '/' + photo.id + '_' + photo.secret; $('<a/>') .append($('<img>').prop('src', baseUrl + '_s.jpg')) .prop('href', baseUrl + '_b.jpg') .prop('title', photo.title) .attr('data-gallery', '') .appendTo(linksContainer); carouselLinks.push({ href: baseUrl + '_c.jpg', title: photo.title }); }); // Initialize the Gallery as image carousel: blueimp.Gallery(carouselLinks, { container: '#blueimp-image-carousel', carousel: true }); }); // Initialize the Gallery as video carousel: blueimp.Gallery([ { title: 'Sintel', href: 'https://archive.org/download/Sintel/sintel-2048-surround_512kb.mp4', type: 'video/mp4', poster: 'https://i.imgur.com/MUSw4Zu.jpg' }, { title: 'Big Buck Bunny', href: 'https://upload.wikimedia.org/wikipedia/commons/7/75/' + 'Big_Buck_Bunny_Trailer_400p.ogg', type: 'video/ogg', poster: 'https://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: 'https://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: 'https://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', type: 'text/html', youtube: 'zi4CIXpx7Bg' }, { title: 'KN1GHT - Last Moon', type: 'text/html', vimeo: '73686146', poster: 'https://secure-a.vimeocdn.com/ts/448/835/448835699_960.jpg' } ], { container: '#blueimp-video-carousel', carousel: true }); });