-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (48 loc) · 2.08 KB
/
index.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
<!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">
<!-- ------------------------------------------------------------- -->
<!-- ADDING CSS STYLES -->
<!-- ------------------------------------------------------------- -->
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/6e425c8d92.js" crossorigin="anonymous"></script>
<title>Circuitikz Gallery</title>
</head>
<body>
<!-- ------------------------------------------------------------- -->
<!-- TITLE OF THE PAGE -->
<!-- ------------------------------------------------------------- -->
<h1 class="heading">Circuitikz Gallery</h1>
<!-- ------------------------------------------------------------- -->
<!-- SEARCH BAR -->
<!-- ------------------------------------------------------------- -->
<div class="wrap">
<div class="search">
<input type="text" class="searchTerm" placeholder="What are you looking for?">
<button type="submit" class="searchButton">
<i class="fa-solid fa-circle-xmark"></i>
</button>
</div>
</div>
<div class="container">
<div class="gallery">
</div>
</div>
<!-- ------------------------------------------------------------- -->
<!-- ADDING JS ACTIONS -->
<!-- ------------------------------------------------------------- -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="actions.js"></script>
<script>
// -------------------------------------------------------------
// HERE IS THE DOWNLOAD CODE PART
// -------------------------------------------------------------
$(".gallery-item>a>img").on("click", function () {
alert("You are dowloading: " + $(this).attr("alt") + " Circuit");
});
</script>
</body>
</html>