-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo.html
160 lines (129 loc) · 4.2 KB
/
video.html
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="img/vinay 1.jpg" type="image/png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="COVB.css">
<title>Vinay Kumar Mahato</title>
<style>
/* Your existing styles go here */
.video-container {
position: relative;
overflow: hidden;
width: 100%;
padding-top: 56.25%;
/* 16:9 Aspect Ratio */
cursor: pointer;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
transition: box-shadow 0.3s ease-in-out;
margin-top: 30px;
}
.video-container:hover {
box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 15px;
transition: transform 0.3s ease-in-out;
}
.video-container:hover video {
transform: scale(1.05);
}
.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #fff;
opacity: 0;
background: rgba(0, 0, 0, 0.7);
transition: opacity 0.3s ease-in-out;
border-radius: 15px;
}
.video-container:hover .video-overlay {
opacity: 1;
}
.video-overlay h2 {
font-size: 28px;
margin-bottom: 10px;
}
.video-overlay p {
font-size: 16px;
margin: 0;
}
#introduction-section {
text-align: center;
padding: 50px 0;
}
#introduction-section h2 {
font-size: 36px;
color: hsl(0, 33%, 97%);
margin-bottom: 20px;
}
#introduction-section p {
font-size: 18px;
color: #fdf8fd;
line-height: 1.6;
}
.introduction-text {
font-size: 18px;
line-height: 1.6;
color: #333;
margin-bottom: 20px;
}
/* Add any additional styles as needed for your page */
</style>
</head>
<body>
<div class="popup" id="certificatePopup">
<div class="popup-content">
<img id="certificateImage" src="" alt="Certificate">
<span class="close-popup" onclick="closeCertificatePopup()">×</span>
</div>
</div>
<!-- Parallax Pixel Background Animation -->
<section class="animated-background">
<div id="stars1"></div>
<div id="stars2"></div>
<div id="stars3"></div>
</section>
<!-- End of Parallax Pixel Background Animation -->
<h1>Vinay Kumar - Software Engineer | Introduction</h1>
<a id="profilePicture" href="#popup">
<img src="img/vinay 1.jpg" alt="Profile Picture">
</a>
<!-- Your existing HTML content goes here -->
<section id="introduction-section">
<h2>My Introduction</h2>
<p class="introduction-text">
Hi, I'm Vinay Kumar, a passionate software engineer dedicated to crafting robust and innovative solutions.
With a strong foundation in programming and problem-solving, I thrive in dynamic and collaborative
environments. My journey in the world of technology has been an exciting adventure, filled with learning,
challenges, and meaningful experiences. If you'd like to get to know me better, I invite you to watch the
video below.
</p>
<div class="video-container">
<video controls>
<source src="img/short video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</section>
<div id="hashtag">
#BeHappy with ADV indian coder❤❤
</div>
<!-- Your remaining HTML content goes here -->
</body>
</html>