Team:StanfordBrownSpelman/jquery.scroll
From 2014.igem.org
(Difference between revisions)
Line 5: | Line 5: | ||
scrollTop: $("#teamNoodle").offset().top | scrollTop: $("#teamNoodle").offset().top | ||
}, 700); | }, 700); | ||
- | + | return false; | |
}); | }); | ||
Line 12: | Line 12: | ||
scrollTop: $("#place").offset().top + 15 | scrollTop: $("#place").offset().top + 15 | ||
}, 700); | }, 700); | ||
- | + | return false; | |
}); | }); | ||
Line 19: | Line 19: | ||
scrollTop: $("#splash").offset().top | scrollTop: $("#splash").offset().top | ||
}, 700); | }, 700); | ||
- | + | return false; | |
}); | }); | ||
Line 26: | Line 26: | ||
scrollTop: $("#precontact").offset().top | scrollTop: $("#precontact").offset().top | ||
}, 700); | }, 700); | ||
- | + | return false; | |
}); | }); | ||
Line 33: | Line 33: | ||
scrollTop: $("#images").offset().top | scrollTop: $("#images").offset().top | ||
}, 700); | }, 700); | ||
- | + | return false; | |
}); | }); | ||
Line 40: | Line 40: | ||
scrollTop: $("#int").offset().top | scrollTop: $("#int").offset().top | ||
}, 700); | }, 700); | ||
- | + | return false; | |
}); | }); | ||
Line 47: | Line 47: | ||
scrollTop: $("#results").offset().top | scrollTop: $("#results").offset().top | ||
}, 700); | }, 700); | ||
- | + | return false; | |
}); | }); | ||
Line 54: | Line 54: | ||
scrollTop: $("#process").offset().top | scrollTop: $("#process").offset().top | ||
}, 700); | }, 700); | ||
- | + | return false; | |
}); | }); | ||
Line 61: | Line 61: | ||
scrollTop: $("#references").offset().top | scrollTop: $("#references").offset().top | ||
}, 700); | }, 700); | ||
- | + | return false; | |
}); | }); | ||
Line 68: | Line 68: | ||
scrollTop: $("#header").offset().top - $("#header").height() | scrollTop: $("#header").offset().top - $("#header").height() | ||
}, 700); | }, 700); | ||
- | + | return false; | |
}); | }); | ||
Line 81: | Line 81: | ||
scrollTop: $("#test2").offset().top | scrollTop: $("#test2").offset().top | ||
}, 700); | }, 700); | ||
- | + | return false; | |
}); | }); | ||
}); | }); |
Revision as of 18:47, 10 October 2014
$(document).ready(function() {
$("#team").click(function() {
$('body, html').animate({ scrollTop: $("#teamNoodle").offset().top }, 700); return false; });
$("#projects").click(function() {
$('body, html').animate({ scrollTop: $("#place").offset().top + 15 }, 700); return false; });
$("#wiki").click(function() {
$('body, html').animate({ scrollTop: $("#splash").offset().top }, 700); return false; });
$("#contact").click(function() {
$('body, html').animate({ scrollTop: $("#precontact").offset().top }, 700); return false; });
$("#pics").click(function() {
$('body, html').animate({ scrollTop: $("#images").offset().top }, 700); return false; });
$("#intro").click(function() {
$('body, html').animate({ scrollTop: $("#int").offset().top }, 700); return false; });
$("#data").click(function() {
$('body, html').animate({ scrollTop: $("#results").offset().top }, 700); return false; });
$("#methods").click(function() {
$('body, html').animate({ scrollTop: $("#process").offset().top }, 700); return false; });
$("#links").click(function() {
$('body, html').animate({ scrollTop: $("#references").offset().top }, 700); return false; });
$("#top").click(function() {
$('body, html').animate({ scrollTop: $("#header").offset().top - $("#header").height() }, 700); return false; });
$("#top2").click(function() {
$('body, html').animate({ scrollTop: '1px'}); return false; });
$("#contact").click(function() {
$('body, html').animate({ scrollTop: $("#test2").offset().top }, 700); return false; }); });