forked from pytorch/pytorch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch-bar.js
42 lines (39 loc) · 1.09 KB
/
search-bar.js
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
docsearch({
apiKey: "e3b73ac141dff0b0fd27bdae9055bc73",
indexName: "pytorch",
inputSelector: "#search-input",
debug: false // Set debug to true if you want to inspect the dropdown
});
docsearch({
apiKey: 'e3b73ac141dff0b0fd27bdae9055bc73',
indexName: 'pytorch',
inputSelector: '#mobile-search-input',
algoliaOptions: {
hitsPerPage: 5
},
debug: false // Set debug to true if you want to inspect the dropdown
});
$("#search-icon").on("click", function() {
$(this).hide();
$("#close-search").show();
$(".search-border")
.addClass("active-background")
.animate({ width: "100%" }, "slow");
$("#search-input")
.addClass("active-search-icon")
.focus();
$(".main-menu-item").hide();
$(".header-logo").addClass("active-header");
});
$("#close-search").on("click", function() {
$(this).hide();
$("#search-icon").show();
$(".search-border")
.attr("style", "")
.removeClass("active-background");
$("#search-input")
.removeClass("active-search-icon")
.val("");
$(".main-menu-item").fadeIn("slow");
$(".header-logo").removeClass("active-header");
});