Advertisement
Meseriasul

VideoContainer

Jun 17th, 2014
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Fullscreen</title>
  5.     <style type="text/css">
  6.         body {
  7.             background-color:green;
  8.         }
  9.         .vWrapper {
  10.             position:absolute;
  11.             top:0;bottom:0;right:0;left:0;
  12.             max-height:100%;
  13.             max-width:100%;
  14.             border:20px solid rgba(255, 255, 255, 0.5); /* modifici transparenta inlocuind .5 cu o valoare intre 0 si 1 */
  15.             display: none;
  16.         }
  17.  
  18.         .vInner {
  19.             width:100%;
  20.             height:100%;
  21.             background-color: red;
  22.         }
  23.  
  24.         .vClose{
  25.             padding-top:10px;
  26.             padding-right:10px;
  27.             position: absolute;
  28.             right:0;
  29.             border:0 none;
  30.         }
  31.  
  32.         .video {
  33.             width:100%;
  34.             height:100%;
  35.             float:left;
  36.         }
  37.  
  38.     </style>
  39.     <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
  40.     <script type="text/javascript">
  41.         $(document).ready(function(){
  42.             $(".showVideo").on("click", function(){
  43.                 var idVideo = $(this).data("idvideo");
  44.                 $("#v" + idVideo).fadeIn();
  45.             })
  46.  
  47.             $(".closeVideo").on("click", function(){
  48.                 $(this).parents().find(".vWrapper").fadeOut();
  49.             })
  50.  
  51.         });
  52.     </script>
  53. </head>
  54. <body>
  55.     <button data-idvideo="1" class="showVideo">Video 1</button>
  56.     <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
  57.     tempor incididunt ut labore et dolore magna aliqua.</p>
  58.     <div id="v1" class="vWrapper">
  59.         <div class="vInner">
  60.             <div class="vClose"><button class="closeVideo">x</button></div>
  61.             <div class="video"><iframe style="width:100%;height:100%;" src="http://www.youtube.com/embed/xvDTAHJy3r4" frameborder="0"></iframe></div>
  62.         </div>
  63.     </div>
  64. </body>
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement