Compare commits
No commits in common. "9f0acf97649a2a43ed6f1d06b0106410389420fc" and "afc1cc571c4e071497da79bdc9b6cd2d912e11bb" have entirely different histories.
9f0acf9764
...
afc1cc571c
|
@ -19,7 +19,6 @@ export default {
|
||||||
:root {
|
:root {
|
||||||
--bg-color: #192236;
|
--bg-color: #192236;
|
||||||
--bg-alt-color: #151d2f;
|
--bg-alt-color: #151d2f;
|
||||||
--bg-alt-hover-color: #111726;
|
|
||||||
--fg-color: #fff;
|
--fg-color: #fff;
|
||||||
--padding: 20px;
|
--padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 8.4 KiB |
|
@ -1,9 +1,7 @@
|
||||||
export default [
|
export default [
|
||||||
{
|
{
|
||||||
"videoName": "JP Installing Windows Project",
|
"videoName": "JP Installing Windows Project",
|
||||||
"videoDescription": "This is a guide in japanese where I teach you how to install windows completely. This was made because of a JP Project I had to do.",
|
|
||||||
"videoID": "1",
|
"videoID": "1",
|
||||||
"path": "videos/JP-Installing-Windows-Project.mp4",
|
"path": "videos/JP-Installing-Windows-Project.mp4"
|
||||||
"thumbnail": "video_thumbnails/JP-Installing-Windows-Project.png"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -25,17 +25,14 @@ const routes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/:pathMatch(.*)',
|
path: '/:pathMatch(.*)',
|
||||||
name: '404',
|
|
||||||
component: notFoundPage
|
component: notFoundPage
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/videos',
|
path: '/videos',
|
||||||
name: 'video',
|
|
||||||
component: videoView
|
component: videoView
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/videos/:id',
|
path: '/videos/:id',
|
||||||
name: 'videos',
|
|
||||||
component: videosView
|
component: videosView
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,95 +1,16 @@
|
||||||
<template>
|
<template>
|
||||||
<h1>Videos</h1>
|
<h1>This page is under construction</h1>
|
||||||
<ul>
|
|
||||||
<router-link v-for="video in videos" :key="video.videoID" :to="'/videos/' + video.videoID">
|
|
||||||
<li>
|
|
||||||
<img :src="require('@/assets/' + video.thumbnail)" alt="Video Thumbnail"/>
|
|
||||||
<div id="content">
|
|
||||||
<h2>{{ video.videoName }}</h2>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</router-link>
|
|
||||||
</ul>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
|
||||||
import videoData from '../data/videos.js'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
videos: videoData
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
color: white;
|
color: white;
|
||||||
font-family: 'Rubik', sans-serif;
|
font-family: 'Rubik', sans-serif;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 3rem;
|
font-size: 4rem;
|
||||||
margin-top: 20px;
|
margin: 60px auto;
|
||||||
}
|
text-align: center;
|
||||||
|
|
||||||
a {
|
|
||||||
max-width: fit-content;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
margin-top: 10px;
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
|
|
||||||
row-gap: 32px;
|
|
||||||
|
|
||||||
li {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
gap: 10px;
|
|
||||||
background-color: var(--bg-alt-color);
|
|
||||||
padding: 10px;
|
|
||||||
border-radius: 10px;
|
|
||||||
width: 370px;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: 0.3s background-color;
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
color: white;
|
|
||||||
font-family: 'Rubik', sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
li:hover {
|
|
||||||
background-color: var(--bg-alt-hover-color);
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
max-width: 350px;
|
|
||||||
aspect-ratio: 16 / 9;
|
|
||||||
pointer-events: none;
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 779px) {
|
|
||||||
a {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
|
|
||||||
li {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,28 +1,17 @@
|
||||||
<template>
|
<template>
|
||||||
<notfound v-if="!(video)"></notfound>
|
<h1>{{ video.videoName }}</h1>
|
||||||
|
<video controls>
|
||||||
<template v-else>
|
<source :src="require('@/assets/' + video.path)" type="video/mp4">
|
||||||
<video controls>
|
</video>
|
||||||
<source :src="require('@/assets/' + video.path)" type="video/mp4">
|
|
||||||
</video>
|
|
||||||
<div id="info">
|
|
||||||
<h1>{{ video.videoName }}</h1>
|
|
||||||
<p>{{ video.videoDescription }}</p>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import videoData from '../data/videos.js'
|
import videoData from '../data/videos.js'
|
||||||
import notfound from '../views/404Page.vue'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
|
||||||
notfound
|
|
||||||
},
|
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
video: null
|
video: null,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
@ -33,37 +22,17 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
video {
|
h1 {
|
||||||
max-height: calc(100vh - 420px);
|
|
||||||
max-width: calc(100vw - 40px);
|
|
||||||
width: max-content;
|
|
||||||
aspect-ratio: 16 / 9;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#info {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 10px;
|
|
||||||
margin-top: 30px;
|
|
||||||
padding: 20px;
|
|
||||||
border-radius: 10px;
|
|
||||||
background-color: var(--bg-alt-color);
|
|
||||||
max-width: 600px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#info h1 {
|
|
||||||
color: white;
|
color: white;
|
||||||
font-family: 'Rubik', sans-serif;
|
font-family: 'Rubik', sans-serif;
|
||||||
|
margin-top: 60px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#info p {
|
video {
|
||||||
font-family: 'Rubik', sans-serif;
|
max-height: calc(100vh - 40px);
|
||||||
font-weight: 200;
|
max-width: calc(100vh - 40px);
|
||||||
font-size: 1.3rem;
|
aspect-ratio: 16 / 9;
|
||||||
color: white;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue