add posters as video thumbnails

This commit is contained in:
Muzahid 2022-02-07 15:23:25 +05:30
parent c0ce5bca96
commit a2fb88783e
Signed by untrusted user: cis-muzahid
GPG Key ID: 1DC85E7D3AB613EA
6 changed files with 32 additions and 30 deletions

BIN
00-intro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

BIN
01-analogies.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
02-principles.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
03-faq.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -1,21 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>Educational Bitcoin videos</title>
</head>
<body>
<div class="container">
<h1 class="heading"> Bitcoin educational videos </h1>
</div>
<div class="container">
<!-- Main video container start -->
<div class="main-video">
<h1 class="heading"> Bitcoin educational videos </h1>
<div class="video">
<video controls autoplay>
<video controls preload="none" poster="00-intro.png">
<source src="00-intro.mp4" type="video/mp4">
<track default src="00-intro.vtt" kind="captions" srclang="en" label="English">
</video>
@ -28,28 +28,28 @@
<!-- Sidebar scroller start -->
<div class="video-list">
<div class="vid active">
<video controls muted autoplay>
<video controls muted preload="none" poster="00-intro.png">
<source src="00-intro.mp4" type="video/mp4">
<track default src="00-intro.vtt" kind="captions" srclang="en" label="English">
</video>
<h3 class="title">01. Intro</h3>
</div>
<div class="vid ">
<video controls muted autoplay>
<div class="vid">
<video controls muted preload="none" poster="01-analogies.png">
<source src="01-analogies.mp4" type="video/mp4">
<track default src="01-analogies.vtt" kind="captions" srclang="en" label="English">
</video>
<h3 class="title">02. Analogies</h3>
</div>
<div class="vid">
<video controls muted autoplay>
<video controls muted preload="none" poster="02-principles.png">
<source src="02-principles.mp4" type="video/mp4">
<track default src="02-principles.vtt" kind="captions" srclang="en" label="English">
</video>
<h3 class="title">03. Principles</h3>
</div>
<div class="vid">
<video controls muted autoplay>
<video controls muted preload="none" poster="03-faq.png">
<source src="03-faq.mp4" type="video/mp4">
<track default src="03-faq.vtt" kind="captions" srclang="en" label="English">
</video>
@ -64,22 +64,24 @@
let mainVideo= document.querySelector('.main-video video')
let title = document.querySelector('.main-video .title')
listVideo.forEach(video =>{
video.onclick = () =>{
listVideo.forEach(vid => vid.classList.remove('active'));
video.classList.add('active');
console.log("video",video)
let src = document.getElementsByClassName('active').item('video').children[0].currentSrc;
// let src = $('.active').children[0].currentSrc;
if(video.classList.contains('active')){
// let src = video
console.log("here is the src",src)
mainVideo.src = src;
let text = video.children[1].innerHTML;
title.innerHTML = text;
if(video){
video.onclick = () =>{
listVideo.forEach(vid => vid.classList.remove('active'));
video.classList.add('active');
console.log("video",video)
let src = document.getElementsByClassName('active').item('video').children[0].currentSrc;
let poster = document.getElementsByClassName('active').item('video').children[0].attributes.poster.nodeValue;
if(video.classList.contains('active')){
console.log("here is the src",src)
console.log("0-0-0-", poster)
mainVideo.src = src;
mainVideo.poster = poster;
let text = video.children[1].innerHTML;
title.innerHTML = text;
};
};
};
}
});
</script>
</body>
</html>
</html>

View File

@ -9,12 +9,12 @@
body {
background: #fff;
overflow: hidden;
}
.heading {
color: dimgrey;
font-size: 40px;
/*text-align: center;*/
padding: 10px;
}
@ -47,7 +47,7 @@ body {
.container .video-list {
background: white;
border-radius: 5px;
height: 520px;
height: 100vh;
overflow-y: scroll;
}