0

initial layout

This commit is contained in:
Ginger Wong 2020-06-04 01:31:47 -07:00
parent a29852f404
commit 9b63d1ffb3
2 changed files with 97 additions and 77 deletions

View File

@ -6,6 +6,7 @@
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
<link href="./styles/layout.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
@ -15,28 +16,40 @@
<script src="vendor/autolink.js"></script>
</head>
<div>
<div class="flex">
<div class="w-4/6">
<body>
<div id="app-container" class="flex">
<header class="flex">
<h1>
Maybe a header
</h1>
</header>
<div id="main-content-container" class="flex no-chat">
<!-- LEFT CONTAINER SIDE-->
<div class="flex main-cols left-col">
<div id="video-container" class="flex">
<video
id="video"
preload="auto"
autoplay
controls
style="width: 100%;"
src="https://ia800300.us.archive.org/17/items/BigBuckBunny_124/Content/big_buck_bunny_720p_surround.mp4"
></video>
<div id="app">
</div>
<div id="info">
{{ streamStatus }} {{ viewerCount }} {{ 'viewer' | plural(viewerCount) }}.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
</div>
<div class="w-2/6">
<div
id="messages-container"
class="bg-white shadow-md rounded px-8 pt-6 pb-8 mb-4"
style="height: 60vh; overflow-y: scroll;"
>
<!-- RIGHT CONTAINER SIDE-->
<div class="flex main-cols right-col">
<div id="chat-container">
<div id="messages-container">
<div v-for="(message, index) in messages">
<div class="bg-white shadow-md rounded px-8 pt-6 pb-8 mb-4">
<div class="flex items-center">
@ -96,7 +109,14 @@
</form>
</div>
</div>
</div>
</div>
<script src="js/message.js"></script>
<script src="js/app.js"></script>
</div>
<script src="js/message.js"></script>
<script src="js/app.js"></script>
</body>
</html>

View File

@ -8,7 +8,7 @@ function setupApp() {
})
window.app = new Vue({
el: "#app",
el: "#info",
data: {
streamStatus: "",
viewerCount: 0,