Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.16 KB | None | 0 0
  1.             <!-- ||||||||||||||||||||||||||||| COMIENZO DIAPOSITIVA VÍDEO-GUÍA NAVEGACIÓN ||||||||||||||||||||||||||||| -->
  2.  
  3.         <?php
  4.         $N++;
  5.         $VECTOR_DIAPO_BLOQUEAR[$N] = "No";
  6.         $VECTOR_DIAPO_BLOQUEAR_TEXTO[$N] = "Recuerda ver el vídeo completo.";
  7.         ?>
  8.  
  9.         <div class="diapositive" id="diapositive_<?php echo $N;?>" style="">
  10.         <div class="hidden-xs hidden-sm hidden-md col-lg-3" style="z-index: 5; top: 20%; min-height: 100px; display: flex; flex-direction: column; justify-content: center">
  11.         <!--h2 class="lazyload-title text_align_center Montserrat-Light">PRESENTACIÓN</h2-->
  12.         </div>
  13.         <div class="col-xs-12 col-sm-12 col-md-12 hidden-lg" style="z-index: 5; top: 2%; min-height: 10px; display: flex; flex-direction: column; justify-content: center">
  14.         <!--h2 class="lazyload-title Montserrat-Light" style="background-color: rgba(255,255,255,0.5); text-align: center;">PRESENTACIÓN</h2-->
  15.         </div>
  16.         <img id="imac_<?php echo $N;?>" class="absolute_centered lazyload" data-src="<?php echo $RUTA_REMOTA; ?>resources/images/common/imac.png" width="90%" style="margin-top: 50px; z-index: 1;">
  17.         <video id="capa_mp4<?php echo $N;?>" class="pausar_video video_adapted_IE video-stop absolute_centered" src="<?php echo $RUTA_REMOTA;?>resources/videos/videoBusquedas.mp4" width="83%" controls muted controlsList="nodownload" style="margin-top: 50px; z-index: 2;"></video>
  18.         <svg height="100%" width="100%" style="position: absolute; top: 0; left: 0; z-index: 0;">
  19.         <polygon class="black_polygon" points="" style="fill: black; stroke: black; stroke-width: 1;"/>
  20.         <polygon class="triangle_polygon" points="" style="fill: transparent; stroke: grey; stroke-width: 1;"/>
  21.         </svg>
  22.         </div>
  23.         <script type="text/javascript">
  24.         $(document).ready(function() {
  25.           resize_video(<?php echo $N;?>);
  26.         });
  27.         $(window).resize(function(event) {
  28.           resize_video(<?php echo $N;?>);
  29.         });
  30.         </script>
  31.  
  32.         <!-- ||||||||||||||||||||||||||||||| FINAL DIAPOSITIVA VÍDEO-GUÍA NAVEGACIÓN |||||||||||||||||||||||||||||| -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement