|
(→Actualizar Acumulados del Empleado)
|
(→Actualizar Acumulados del Empleado)
|
| Line 8: | |||
| ---- | ---- | ||
| + | <a class="popup-youtube" href="https://www.youtube.com/watch?v=CIV6o2qEKVM" data-effect="fadeIn"> | ||
| <script> | <script> | ||
| - | document.getElementById('header').innerHTML = "<iframe title='YouTube video player' type=\'text/html\' width='640' height='390' src='http://www.youtube.com/embed/W-Q7RMpINVo' frameborder='0' allowFullScreen></iframe>" | + | /* Video Lightbox - Magnific Popup */ |
| + | $('.popup-youtube, .popup-vimeo').magnificPopup({ | ||
| + | disableOn: 700, | ||
| + | type: 'iframe', | ||
| + | mainClass: 'mfp-fade', | ||
| + | removalDelay: 160, | ||
| + | preloader: false, | ||
| + | fixedContentPos: false, | ||
| + | iframe: { | ||
| + | patterns: { | ||
| + | youtube: { | ||
| + | index: 'youtube.com/', | ||
| + | id: function(url) { | ||
| + | var m = url.match(/[\\?\\&]v=([^\\?\\&]+)/); | ||
| + | if ( !m || !m[1] ) return null; | ||
| + | return m[1]; | ||
| + | }, | ||
| + | src: 'https://www.youtube.com/embed/%id%?autoplay=1' | ||
| + | }, | ||
| + | vimeo: { | ||
| + | index: 'vimeo.com/', | ||
| + | id: function(url) { | ||
| + | var m = url.match(/(https?:\/\/)?(www.)?(player.)?vimeo.com\/([a-z]*\/)*([0-9]{6,11})[?]?.*/); | ||
| + | if ( !m || !m[5] ) return null; | ||
| + | return m[5]; | ||
| + | }, | ||
| + | src: 'https://player.vimeo.com/video/%id%?autoplay=1' | ||
| + | } | ||
| + | } | ||
| + | } | ||
| + | }); | ||
| </script> | </script> | ||