-
Notifications
You must be signed in to change notification settings - Fork 0
/
augmented.html
111 lines (86 loc) · 4.08 KB
/
augmented.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>
Kaneraa | Shruti Yadav
</title>
<link rel="shortcut icon" href="2-fivicon.png">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="navbar" class="sticky">
<a href="index.html" style="background-color: #fff;"><img src="logo.jpg" width=150%"
style="margin-top: -13px;"></a>
<a href="contact.html" style="text-align: center; float: right; margin-right: 5px; width: 8%;">GET IN TOUCH</a>
<a href="muse.html" style="float: right; width: 6%;">MUSE</a>
<a class="active" href="interaction.html" style="float: right;">INTERACTION DESIGN</a>
<a href="communication.html" style="float: right; width: 12%;">COMMUNICATION DESIGN</a>
<a href="resume.html" style="float: right; width: 7%;">RÉSUMÉ</a>
<a href="index.html" style="margin-left: 0px; float: right; width: 6%;">HOME</a>
</div>
<img src="augmented1.png" class="myImg">
<img src="augmented2.png" class="myImg">
<img src="augmented3.png".jpg" class="myImg">
<video autoplay loop class="myVid">
<source src="augmentedV1.mp4" type="video/mp4">
</video>
<video autoplay loop class="myVid">
<source src="augmentedV2.mp4" type="video/mp4">
</video>
<video autoplay loop class="myVid">
<source src="augmentedV3.mp4" type="video/mp4">
</video>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- The Close Button -->
<span class="close" onclick="document.getElementById('myModal').style.display='none'">×</span>
<!-- Modal Content (The Image) -->
<img class="modal-content" id="img01">
<!-- Modal Caption (Image Text) -->
<div id="caption"></div>
</div>
<script>
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = $('.myImg');
var modalImg = $("#img01");
var captionText = document.getElementById("caption");
$('.myImg').click(function () {
modal.style.display = "block";
var newSrc = this.src;
modalImg.attr('src', newSrc);
captionText.innerHTML = this.alt;
});
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function () {
modal.style.display = "none";
}
</script>
<hr class="abovefooter">
<footer>
<footer>
<img class="footera" src="logo.jpg">
<a href="contact.html" class="totop"><button class="contact">GET IN TOUCH</button></a>
<table align="center" style="margin-top: 10px;" cellspacing="10px">
<tr>
<td style="height: 20px; width: 20px;"><a href="https://www.instagram.com/kaneraaaa/"><img
src="ig.png" style="width: 30px; height: 30px; opacity: 0.7;"></a></td>
<td style="height: 20px; width: 20px;"><a href="mailto:[email protected]"><img src="em.png"
style="width: 30px; height: 30px; opacity: 0.7;"></a></td>
<td style="height: 20px; width: 20px;"><a href="https://www.behance.net/shrutiyadav2"><img
src="be.png" style="width: 30px; height: 30px; opacity: 0.7;"></a></td>
</tr>
</table>
<p class="textcenter" style="font-size: 10px;">Designed by Shruti Yadav in 2022</p>
</footer>
<button id="myBtn"><a href="#top" class="totop">Top</a></button>
</body>
</html>