-
Notifications
You must be signed in to change notification settings - Fork 0
/
mcabooks.php
149 lines (119 loc) · 5.28 KB
/
mcabooks.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MCA BOOKS</title>
<link rel="stylesheet" href="mcabooks.css">
<style>
.highlight {
background-color: yellow;
font-weight: bold;
}
</style>
</head>
<body>
<div class="nav">
<img src="dibrugarh-university.png" class="logo">
<div class="aa">
<ul>
<li><a href="explore.html">Main</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<div class="search-container">
<form action="#" method="GET" oninput="highlightSearch()">
<input type="text" placeholder="Search books.." name="search" id="searchInput">
</form>
</div>
</div>
</div>
<div class="pdf-container">
<div class="pdf-item">
<a href="../e-book/media/Example1.pdf" download onclick="handleDownload(this.href, 'confirm.html')">
<img src="../e-book/media/Example1.pdf .png" alt="PDF Preview">
</a>
<p>A Sample Pdf For Example</p>
</div>
<div class="pdf-item">
<a href="../e-book/media/Example2.pdf" download onclick="handleDownload(this.href, 'confirm.html')">
<img src="../e-book/media/Example2.pdf .png" alt="PDF Preview">
</a>
<p>A Sample Pdf For Example</p>
</div>
<div class="pdf-item">
<a href="../e-book/media/Example3.pdf" download onclick="handleDownload(this.href, 'confirm.html')">
<img src="../e-book/media/Example3.pdf .png" alt="PDF Preview">
</a>
<p>A Sample Pdf For Example</p>
</div>
<div class="pdf-item">
<a href="../e-book/media/Example1.pdf" download onclick="handleDownload(this.href, 'confirm.html')">
<img src="../e-book/media/Example1.pdf .png" alt="PDF Preview">
</a>
<p>A Sample Pdf For Example</p>
</div>
<div class="pdf-item">
<a href="../e-book/media/Example2.pdf" download onclick="handleDownload(this.href, 'confirm.html')">
<img src="../e-book/media/Example2.pdf .png" alt="PDF Preview">
</a>
<p>A Sample Pdf For Example</p>
</div>
</div>
<div class="pdf-containeri">
<div class="pdf-itemi">
<a href="../e-book/media/Example3.pdf" download onclick="handleDownload(this.href, 'confirm.html')">
<img src="../e-book/media/Example3.pdf .png" alt="PDF Preview">
</a>
<p>A Sample Pdf For Example</p>
</div>
<div class="pdf-itemi">
<a href="../e-book/media/Example1.pdf" download onclick="handleDownload(this.href, 'confirm.html')">
<img src="../e-book/media/Example1.pdf .png" alt="PDF Preview">
</a>
<p>A Sample Pdf For Example</p>
</div>
<div class="pdf-itemi">
<a href="../e-book/media/Example2.pdf" download onclick="handleDownload(this.href, 'confirm.html')">
<img src="../e-book/media/Example2.pdf .png" alt="PDF Preview">
</a>
<p>A Sample Pdf For Example</p>
</div>
<div class="pdf-itemi">
<a href="../e-book/media/Example3.pdf" download onclick="handleDownload(this.href, 'confirm.html')">
<img src="../e-book/media/Example3.pdf .png" alt="PDF Preview">
</a>
<p>A Sample Pdf For Example</p>
</div>
<div class="pdf-itemi">
<a href="../e-book/media/Example1.pdf" download onclick="handleDownload(this.href, 'confirm.html')">
<img src="../e-book/media/Example1.pdf .png" alt="PDF Preview">
</a>
<p>A Sample Pdf For Example</p>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script>
function handleDownload(fileURL, redirectPage) {
var a = document.createElement('a');
a.href = fileURL;
a.target = '_blank';
a.download = 'downloaded_file.pdf';
a.click();
setTimeout(function() {
window.location.href = redirectPage;
}, 1000);
}
function highlightSearch() {
var searchQuery = document.getElementById('searchInput').value.toLowerCase().trim();
var paragraphs = document.querySelectorAll('.pdf-container p, .pdf-containeri p, .pdf-containerii p, .pdf-containeriii p, .pdf-containeriiii p');
paragraphs.forEach(function(paragraph) {
var text = paragraph.textContent.toLowerCase();
var newText = text.replace(new RegExp(searchQuery, 'gi'), function(match) {
return '<span class="highlight">' + match + '</span>';
});
paragraph.innerHTML = newText;
});
}
</script>
</body>
</html>