(27 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{CSU_CHINA/Base}} | {{CSU_CHINA/Base}} | ||
+ | {{CSU_CHINA/PageBase}} | ||
+ | |||
+ | |||
<html> | <html> | ||
<style> | <style> | ||
Line 77: | Line 80: | ||
</style> | </style> | ||
<script> | <script> | ||
− | $(document).ready(function(){ | + | $(document).ready(function() |
+ | { | ||
+ | |||
let navibar = $('ul.navigation-bar'); | let navibar = $('ul.navigation-bar'); | ||
let navbuttonItems = $('ul.navigation-bar > li'); | let navbuttonItems = $('ul.navigation-bar > li'); | ||
− | navbuttonItems.mouseenter(function(){ | + | navbuttonItems.mouseenter(function() |
− | + | { | |
− | + | var submenu = $(this).children('ul.sub-menu'); | |
− | + | submenu.stop(true,false); | |
− | + | submenu.slideDown(); | |
− | navbuttonItems.mouseleave(function(){ | + | }); |
− | + | navbuttonItems.mouseleave(function() | |
− | + | { | |
− | + | var submenu = $(this).children('ul.sub-menu'); | |
− | + | submenu.stop(true,false); | |
− | + | submenu.slideUp(); | |
− | + | }); | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | //highlight current page on the menu | |
− | + | ||
highlight_current_page_menu(); | highlight_current_page_menu(); | ||
− | + | ||
//accessing submenus | //accessing submenus | ||
$(".menu_item").click(function(){ | $(".menu_item").click(function(){ | ||
Line 114: | Line 114: | ||
$(".igem_2018_team_mobile_bar").click(function(){ | $(".igem_2018_team_mobile_bar").click(function(){ | ||
$(this).next().toggleClass("displaying_menu"); | $(this).next().toggleClass("displaying_menu"); | ||
− | }); | + | }); |
− | |||
− | + | ||
+ | |||
+ | }); | ||
+ | |||
+ | function highlight_current_page_menu() { | ||
var page_url="https://2018.igem.org/"; | var page_url="https://2018.igem.org/"; | ||
Line 136: | Line 139: | ||
− | + | ||
</script> | </script> | ||
+ | |||
+ | |||
+ | |||
Latest revision as of 02:04, 18 October 2018