forked from pytorch/pytorch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents_side_nav.html
48 lines (41 loc) · 1.5 KB
/
events_side_nav.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
<div id="event-side-nav" class="sticky-top">
<ul id="get-started-contributor-sidebar-list">
{% assign events = site.events | where: "category", "event" | sort_natural: "date" | reverse %}
{% for item in events %}
<ul>
<li><a href="#{{ item.title | remove: " " }}">{{ item.title }}</a></li>
</ul>
{% endfor %}
</ul>
</div>
<script>
$("#get-started-contributor-sidebar-list li a").on("click", function(e) {
var href = $(this).attr("href")
$('html, body').stop().animate({
scrollTop: $(href).offset().top - 100
}, 850);
(e).preventDefault;
});
var lastId,
topMenu = $("#get-started-contributor-sidebar-list"),
topMenuHeight = topMenu.outerHeight() + 1,
// All sidenav items
menuItems = topMenu.find("a"),
// Anchors for menu items
scrollItems = menuItems.map(function() {
var item = $(this).attr("href");
if (item.length) { return item; }
});
$(window).scroll(function(){
var fromTop = $(this).scrollTop()+topMenuHeight;
var article = '.pytorch-article'
$(article).each(function(i){
var offsetScroll = $(this).offset().top-$(window).scrollTop();
if (offsetScroll <= topMenuHeight + 200 && offsetScroll >= topMenuHeight - 200 && scrollItems[i] == "#" + $(this).children().attr("id") && $(".hidden:visible")) {
$(menuItems).removeClass("active");
$(menuItems[i]).addClass("active");
}
})
});
</script>
<script src="https://code.jquery.com/jquery-migrate-3.0.0.min.js"></script>