Advertisement
Guest User

Untitled

a guest
Nov 30th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4.     <head>
  5.         <meta charset="UTF-8">
  6.         <title>Title</title>
  7.         <!-- peer5 client & plugin -->
  8.         <script src="url/jwplayer.js"></script>
  9.         <script>jwplayer.key="privatekey";</script>
  10.         <!-- <script src="//content.jwplatform.com/libraries/privatemaybe.js"></script>-->
  11.     </head>
  12.        
  13.     <style>
  14.         html{
  15.             height:100%;
  16.             width:100%;
  17.         }
  18.  
  19.         body {
  20.             background-color: #2d2d2d;
  21.             background-repeat: no-repeat;
  22.             background-attachment: fixed;
  23.             background-position: center;
  24.             background-size:cover
  25.          }
  26.  
  27.            .myButton {
  28.         -moz-box-shadow:inset -20px 3px 7px -50px #29bbff;
  29.         -webkit-box-shadow:inset -20px 3px 7px -50px #29bbff;
  30.         box-shadow:inset -20px 3px 7px -50px #29bbff;
  31.         background-color:#1781bf;
  32.         -moz-border-radius:4px;
  33.         -webkit-border-radius:4px;
  34.         border-radius:4px;
  35.         border:1px solid #0b0e07;
  36.         display:inline-block;
  37.         cursor:pointer;
  38.         color:#ffffff;
  39.         font-family:Arial;
  40.         font-size:17px;
  41.         padding:26px 72px;
  42.         text-decoration:none;
  43.         text-shadow:0px 1px 0px #263666;
  44.         }
  45.  
  46.         .myButton:hover {
  47.             background-color:#0688fa;
  48.         }
  49.  
  50.         .myButton:active {
  51.             position:relative;
  52.             top:1px;
  53.         }
  54.     </style>
  55.        
  56.     <body background="../images/backgroundmountains.jpg">
  57.         <div id="header">
  58.             <center>
  59.                 <!-- this is the gray box -->
  60.                 <img src="../images/backgroundstream.png" align="center"  style="width: 70%; max-width: 70%; position: relative;"/>
  61.             </center>
  62.  
  63.             <!--#####Player ####-->
  64.  
  65.             <div align="center" style="position: relative;">
  66.             <div id="container"></div>
  67.                 <script>
  68.                     jwplayer("container").setup({
  69.                         aspectratio: "16:9",
  70.                         width: "65%",
  71.                         top: "50%",
  72.                         file: "rtmp://stream",
  73.                         <!-- image: "../images/backgroundmountains.jpg"-->
  74.                     });
  75.                 </script>          
  76.             </div>
  77.  
  78.             <!--#####/Player ####-->
  79.  
  80.         </div>
  81.        
  82.         <--! button -->
  83.         <div id="divA" align="center">
  84.             <a href="#" class="myButton" onclick="location.href = '/';" style="position: relative; top: 0px;">index</a>
  85.         </div>
  86.     </body>
  87. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement