-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
82 lines (72 loc) · 2.25 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
$(function () {
$(".sidebar-link").click(function () {
$(".sidebar-link").removeClass("is-active");
$(this).addClass("is-active");
});
});
$(window)
.resize(function () {
if ($(window).width() > 1090) {
$(".sidebar").removeClass("collapse");
} else {
$(".sidebar").addClass("collapse");
}
})
.resize();
const allVideos = document.querySelectorAll(".video");
allVideos.forEach((v) => {
v.addEventListener("mouseover", () => {
const video = v.querySelector("video");
video.play();
});
v.addEventListener("mouseleave", () => {
const video = v.querySelector("video");
video.pause();
});
});
$(function () {
$(".logo, .logo-expand, .discover").on("click", function (e) {
// $(".main-container").removeClass("show");
// $(".main-container").scrollTop(0)
$(".sec3").hide('slow')
$(".sec2").hide('slow')
$(".sec1").show('slow') ;
});
$(".trending , .video").on("click", function (e) {
// $(".main-container").addClass("show");
// $(".main-container").scrollTop(0);
// $(".sidebar-link").removeClass("is-active");
// $(".trending").addClass("is-active")
$(".sec1").hide('slow')
$(".sec3").hide('slow')
$(".sec2").show('slow') ;
});
// $(".userChannels").on("click", function (e) {
// $(".main-container").addClass("show");
// $(".main-container").scrollTop(0);
// $(".sidebar-link").removeClass("is-active");
// $(".userChannels").addClass("is-active");
// });
$(".userChannels").on("click", function (e){
// $(".main-container").addClass("show");
// $(".main-container").scrollTop(0);
$(".sidebar-link").removeClass("is-active");
$(".userChannels").addClass("is-active")
$(".sec1").hide('slow')
$(".sec2").hide('slow')
$(".sec3").show('slow');
// document.getElementById('sec3').style.display = "block";
})
$(".video").click(function () {
var source = $(this).find("source").attr("src");
var title = $(this).find(".video-name").text();
var person = $(this).find(".video-by").text();
var img = $(this).find(".author-img").attr("src");
$(".video-stream video").stop();
$(".video-stream source").attr("src", source);
$(".video-stream video").load();
$(".video-p-title").text(title);
$(".video-p-name").text(person);
$(".video-detail .author-img").attr("src", img);
});
});