Team:Heidelberg/Templates/Footer

From 2013.igem.org

(Difference between revisions)
m
m
 
(11 intermediate revisions not shown)
Line 1: Line 1:
<html>
<html>
<!-- The JavaScript -->
<!-- The JavaScript -->
-
 
-
        <!-- Bootstrap core JavaScript
 
-
        ================================================== -->
 
-
        <!-- Placed at the end of the document so the pages load faster -->
 
-
    <script src="https://2013.igem.org/Team:UANL_Mty-Mexico/jquery?action=raw&ctype=text/javascript"></script>
 
-
    <script src="https://2013.igem.org/Team:UANL_Mty-Mexico/js?action=raw&ctype=text/javascript"></script>
 
-
    <script src="https://2013.igem.org/Team:UANL_Mty-Mexico/holderjs?action=raw&ctype=text/javascript"></script>
 
-
            <!--<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
 
              
              
-
             <script type="text/javascript" src="https://2013.igem.org/Team:Heidelberg/Templates/bootstrap-js?action=raw&ctype=text/javascript"></script>
+
             <script src="https://2013.igem.org/Team:Heidelberg/Templates/jqueryjs?action=raw&ctype=text/javascript"></script>
-
             <script type="text/javascript" src="https://2013.igem.org/Team:Heidelberg/Templates/holder-js?action=raw&ctype=text/javascript"></script>-->
+
             <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/holderjs?action=raw&ctype=text/javascript"></script>
 +
           
             <script type="text/javascript">
             <script type="text/javascript">
-
                 $('#myCarousel').carousel({interval: false});
+
                 $(function() {
-
                $('div').scrollspy({ target: '#navbarExample' });
+
                    //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