Kooperationen und Forschungsressourcen
')
this.controlPrev.on("click", () => {
this.stopAutoSliding()
this.prev()
});
this.element.prepend(this.controlPrev)
}
if(!this.controlNext) {
this.controlNext = $('
>
')
this.controlNext.on("click", () => {
this.stopAutoSliding()
this.next()
});
this.element.prepend(this.controlNext)
}
}
/**
* remove control arrows
*/
removeControls() {
if(this.controlPrev) this.controlPrev.remove()
if(this.controlNext) this.controlNext.remove()
}
/**
* promise to wait for loading of all images within the slider
* @returns {Promise
}
*/
async _allImagesLoaded() {
let loadPromises = []
this.element.find("img").each((i, imageElement) => {
loadPromises.push(new Promise(res => {
$("
").on("load", () => res()).attr("src", $(imageElement).attr("src"))
}))
})
await Promise.all(loadPromises)
}
}
function setupSliders(target) {
target.find(".slider").each(function () {
new Slider($(this))
})
}
// SETUPS
$(document).ready(function () {
let main = $("#main");
setupAccordions(main);
setupBanner(main)
setupSliders(main)
})
// Fix navigation height when the page is scrolled and the menu is moved to the top
function fixedNav() {
let viewportWidth = $(window).width();
let main = $('#main');
let scrollableArea = $("#scrollable-area");
let headerLogoContainer = $("#header-logo-container");
let navigationContainerMobile = $('#navigation-container-mobil');
let navigationContainer = $('#navigation-container');
if (viewportWidth headerLogoContainer.height() + 3) {
navigationContainerMobile.css('width', navigationContainerMobile.width() + "px");
main.css('padding-top', navigationContainerMobile.height() + 'px');
// ADD TO ORIGINAL SCRIPT:
main.css('background-position', '0 ' + (parseInt(navigationContainerMobile.height()) * 2) + 'px');
navigationContainerMobile.css('position', 'fixed');
navigationContainerMobile.css('top', '0');
} else {
navigationContainerMobile.css('width', "100%");
main.css('padding-top', '0');
// ADD TO ORIGINAL SCRIPT:
main.css('background-position', '0 ' + navigationContainerMobile.height() + 'px');
navigationContainerMobile.css('position', 'relative');
}
} else {
if (scrollableArea.scrollTop() > headerLogoContainer.height() + 3) {
navigationContainer.css('width', navigationContainer.width() + "px");
main.css('padding-top', navigationContainer.height() + 'px');
// ADD TO ORIGINAL SCRIPT:
main.css('background-position', '0 ' + (parseInt(navigationContainerMobile.height()) * 2) + 'px');
navigationContainer.css('position', 'fixed');
navigationContainer.css('top', '0');
} else {
navigationContainer.css('width', "100%");
main.css('padding-top', '0');
// ADD TO ORIGINAL SCRIPT:
main.css('background-position', '0 ' + navigationContainerMobile.height() + 'px');
navigationContainer.css('position', 'relative');
}
}
}
Kooperationen und Forschungsressourcen im Waldweg
Kooperationen
- Studienseminar für das Lehramt an Gymnasien in Göttingen
Weitere Infos hier
- Netzwerk Lehrkräftefortbildung (NLF)
Weitere Infos hier
- BLAB: Lebenswissenschaftliches Schülerlabor der Georg-August-Universität.
Weitere Infos hier
- XLAB: Experimentallabor für Schüler der Georg-August-Universität Göttingen
Weitere Infos hier
- YLAB: Geisteswissenschaftliches Schülerlabor der Georg-August-Universität Göttingen
Weitere Infos hier
- ΦLAB: Eye-Tracking Labor der Physikdidaktik Göttingen
Weitere Infos hier
Forschungsressourcen im Waldweg
- Bilbiothek Waldweg: Informations- und Literaturversorgung von Lehrenden und Studieren-
den in den Fachgebieten Fachdidaktik, Erziehungswissenschaft, Psychologie und Sport.
Weitere Infos hier
- Sammlung historischer Kinder- und Jugendliteratur
Weitere Infos hier