78 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html class="no-js" lang="">
 | 
						|
 | 
						|
<head>
 | 
						|
  <meta charset="utf-8">
 | 
						|
  <title></title>
 | 
						|
  <meta name="description" content="">
 | 
						|
  <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
 | 
						|
  <meta property="og:title" content="">
 | 
						|
  <meta property="og:type" content="">
 | 
						|
  <meta property="og:url" content="">
 | 
						|
  <meta property="og:image" content="">
 | 
						|
 | 
						|
  <link rel="manifest" href="site.webmanifest">
 | 
						|
  <!-- <link rel="apple-touch-icon" href="icon.png"> -->
 | 
						|
  <!-- Place favicon.ico in the root directory -->
 | 
						|
 | 
						|
  <link rel="stylesheet" href="css/normalize.css">
 | 
						|
  <link rel="stylesheet" href="css/main.css">
 | 
						|
 | 
						|
  <meta name="theme-color" content="#fafafa">
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
 | 
						|
  <!-- Add your site or application content here -->
 | 
						|
 | 
						|
  <div id="desk">
 | 
						|
    <div id="players">
 | 
						|
      <div class="player">
 | 
						|
        <iframe id="playerA" src="" width="480" height="270", frameborder='0'></iframe>
 | 
						|
        <input class='load-button'  type="button" value="Load new track or playlist">
 | 
						|
        <div class="speed-control">
 | 
						|
          <span class='speed-value'></span>
 | 
						|
          <input type="range" class='speed-slider' name="speedRate" value="1" min='0.25' max='2' step='0.25'>
 | 
						|
        </div>
 | 
						|
        <input type="range" class="volume-slider" min='0' max = '100' value="80">
 | 
						|
      </div>
 | 
						|
      <div class="player">
 | 
						|
        <iframe id="playerB" src="" width="480" height="270", frameborder='0'></iframe>
 | 
						|
        <input type="range" class='volume-slider' min='0' max = '100' value="80">
 | 
						|
        <div class="speed-control">
 | 
						|
          <span class='speed-value'></span>
 | 
						|
          <input type="range" class='speed-slider' name="speedRate" value="1" min='0.25' max='2' step='0.25'>
 | 
						|
        </div>
 | 
						|
        <input class='load-button' type="button" value="Load new track or playlist">
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <input type="range" id='crossfader' name="crossfader" min='0' max='1000' value='500'>
 | 
						|
    <!-- <div id="search-area">
 | 
						|
      <div class="search">
 | 
						|
        <input type="button" value="Load new track or playlist">
 | 
						|
 | 
						|
        <label for="url-player-A">Enter link of a YT video or playlist</label>
 | 
						|
        <input type="url" name="url-player-A" id="url_A" placeholder="https://www.youtube.com/watch?v=...." pattern="https://.*" size="40">
 | 
						|
      </div>
 | 
						|
      <div class="search">
 | 
						|
        <input type="button" value="Load new track or playlist">
 | 
						|
        <label for="url-player-B">Enter link of a YT video or playlist</label>
 | 
						|
        <input type="url" name="url-player-B" id="url_B" placeholder="https://www.youtube.com/watch?v=...." pattern="https://.*" size="40">
 | 
						|
      </div>
 | 
						|
    </div> -->
 | 
						|
    <h1>YTDJ!</h1>
 | 
						|
  </div>
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
  <script src="js/vendor/modernizr-3.11.2.min.js"></script>
 | 
						|
  <script src="js/plugins.js"></script>
 | 
						|
  <script src="js/main.js"></script>
 | 
						|
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |