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

View File

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