paella-core
Version:
Multistream HTML video player
42 lines (41 loc) • 1.77 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paella Player</title>
<script src="paella.js"></script>
</head>
<body>
<section>
<h1>Spacer</h1>
<p>This section is intentionally inserted to generate a scroll on the page.</p>
<p>It is used to test the pop up placement when the page is scrolled down.</p>
<img src="https://via.placeholder.com/1500" alt="Placeholder image">
</section>
<div id="player-container"></div>
<div>
<span>Cokie consent test:</span>
<input type="checkbox" id="preferences" name="preferences"><label for="preferences">Preferences</label>
<input type="checkbox" id="analytical" name="analytical"><label for="analytical">Analytics</label>
<input type="checkbox" id="marketing" name="marketing"><label for="marketing">Marketing</label>
<button id="saveCookiesButton">Save</button>
<span id="currentCookieConsent"></span>
</div>
<div>
<input type="text" id="testSaveCookieData">
<select id="saveCookieType">
<option value="preferences">Preferences</option>
<option value="analytical">Analytics</option>
<option value="marketing">Marketing</option>
</select>
<button id="saveCookieButton">Save Cookie</button>
<span id="currentCookieValue"></span>
</div>
<section>
<h1>Spacer</h1>
<p>This section is intentionally inserted to generate a scroll on the page.</p>
<p>It is used to test the pop up placement when the page is scrolled down.</p>
<img src="https://via.placeholder.com/1500" alt="Placeholder image">
</section>
</body>
</html>