Team:Heidelberg/Templates/Footer
From 2013.igem.org
(Difference between revisions)
Nils.kurzawa (Talk | contribs) m |
Nils.kurzawa (Talk | contribs) m |
||
(9 intermediate revisions not shown) | |||
Line 2: | Line 2: | ||
<!-- The JavaScript --> | <!-- The JavaScript --> | ||
- | + | <script src="https://2013.igem.org/Team:Heidelberg/Templates/jqueryjs?action=raw&ctype=text/javascript"></script> | |
- | <script src="https://2013.igem.org/Team:Heidelberg/Templates/ | + | <script src="https://2013.igem.org/Team:Heidelberg/Templates/bootstrapjs?action=raw&ctype=text/javascript"></script> |
- | <script src="https://2013.igem.org/Team:Heidelberg/Templates/ | + | <script src="https://2013.igem.org/Team:Heidelberg/Templates/holderjs?action=raw&ctype=text/javascript"></script> |
- | <script src="https://2013.igem.org/Team:Heidelberg/Templates/ | + | |
<script type="text/javascript"> | <script type="text/javascript"> | ||
- | $('#myCarousel').carousel({interval: | + | $(function() { |
- | + | //script for hiding/showing only 3 months | |
+ | $($('.month_tab').slice(3)).hide(); | ||
+ | $('#forwards').click(function(e) { | ||
+ | var visible = $('.month_tab:visible'); | ||
+ | var next = $(visible[visible.length - 1]).next('.month_tab'); | ||
+ | if (next.length > 0) { | ||
+ | $(visible[0]).hide(); | ||
+ | next.show(); | ||
+ | } | ||
+ | e.preventDefault(); | ||
+ | }); | ||
+ | $('#backwards').click(function(e) { | ||
+ | var visible = $('.month_tab:visible'); | ||
+ | var prev = $(visible[0]).prev('.month_tab'); | ||
+ | if (prev.length > 0) { | ||
+ | $(visible[visible.length - 1]).hide(); | ||
+ | prev.show(); | ||
+ | } | ||
+ | e.preventDefault(); | ||
+ | }); | ||
+ | |||
+ | $('#myCarousel').carousel({interval: 0}); | ||
+ | $('div').scrollspy({ target: '#navbarExample' }); | ||
+ | |||
+ | |||
+ | //Month-week dependecy | ||
+ | $('#may').click(function(e) { | ||
+ | $('.item.active').removeClass('active') | ||
+ | $('.active.month_tab').removeClass('active') | ||
+ | $('#may_weeks').addClass('active') | ||
+ | $('#may').addClass('active') | ||
+ | e.preventDefault(); | ||
+ | }); | ||
+ | |||
+ | $('#june').click(function(e) { | ||
+ | $('.item.active').removeClass('active') | ||
+ | $('.active.month_tab').removeClass('active') | ||
+ | $('#june_weeks').addClass('active') | ||
+ | $('#june').addClass('active') | ||
+ | e.preventDefault(); | ||
+ | }); | ||
+ | }); | ||
</script> | </script> | ||
</html> | </html> |
Latest revision as of 09:36, 24 September 2013