-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (116 loc) · 4.31 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
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
<!DOCTYPE HTML>
<html>
<head>
<title>Infinite Wiki</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0 maximum-scale=1.0" />
<link rel="icon" href="assets/favicon.png" type="image" sizes="16x16">
<link rel="stylesheet" href="assets/css/main.css" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
<link rel="stylesheet" type="text/css" href="tooltipster/dist/css/tooltipster.bundle.min.css" />
</head>
<body class="is-preload">
<!--- The modal with ifrmame-->
<div class="container">
<div id="iframe-modal" class="modal wrap-element">
<iframe id="myframe" class="my-iframe" frameborder="0"></iframe>
<a href="#" rel="modal:close">Close</a>
</div>
<!-- end of modal-->
<!--Placement of sticky objects-->
<div class="item sticky">
<img onclick="topFunction()" id="Gotop" src="assets/pirate.svg" width="100" alt="Item 1"
data-aos="fade-up"><img src="assets/circle.png" class="centered"><span class="centered" id="count"
style="color:black;font-weight: bolder;font-size: x-large;"></span>
</div>
</div>
<!-- Wrapper-->
<div id="wrapper">
<div id="demo"></div>
<!-- Nav -->
<nav id="nav">
<a href="#"><img src="assets/favicon.png"></a>
<a href="#info"><img src="assets/info.png"></a>
<a href="https://github.com/gauthamp10"><img src="assets/github.png"></a>
</nav>
<!-- Main -->
<div id="main">
<!-- Wiki -->
<article id="#" class="panel">
<header>
<h2>Infinite Wiki</h2>
</header>
<p>
Explore wikipedia resources without jumping around.
<center style="color: green;font-weight: bolder;"> Click 🖱️ thumbnail🖼️ to view the article</center>
</p>
<form id="searchtag" name="searchtag" method="post" onsubmit="onsubmitSearch();return false;">
<div class="row">
<div class="col-12">
<span class="fi fi-search"></span>
<input type="text" name="search" id="search" placeholder="Name"
class="form-control autocomplete" />
</div>
</div>
</form>
<section>
<div class="row" id="wikidiv">
</div>
</section>
</article>
<article id="info" class="panel intro">
<header>
<h1>Gautham Prakash</h1>
<h3>Website: <a href="https://gauthamp10.github.io" style="text-decoration:
none;">gauthamp10.github.io </a></h3>
<p>Developer</p>
</header>
<a href="#info" class="jumplink pic">
<span class="arrow icon solid fa-chevron-right"><span>See my work</span></span>
<img src="http://gauthamp10.me/img/me.png" alt="" />
</a>
</article>
</div>
<!-- Footer -->
<div id="footer">
<ul class="copyright">
<li>© Gautham Prakash.</li>
<li>ReDesigned: <a href="http://gauthamp10.github.io">GP10</a></li>
</ul>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/app.js"></script>
<script src="assets/js/autocomplete.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js"></script>
<script>
AOS.init(); // To initialize animate on scroll library
</script>
<!--End of scripts -->
<script>
//Get the button
var mybutton = document.getElementById("Gotop");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () { scrollFunction() };
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</body>
</html>