This commit is contained in:
janis
2022-11-24 16:20:20 +01:00
parent f692a82423
commit d15bf94121
19 changed files with 153 additions and 128 deletions

View File

@@ -1,5 +1,6 @@
$(document).ready(function() {
$("#ContentToInclude").load("/menu.html");
$("#ContentToInclude").load("/menu.html");
$("#Footer").load("/footer.html");
$(".linkbutton").mouseenter(function() {
$(this).stop()
$(this).animate({"border-radius": "0px", "background-color": "darkblue"}, 200)
@@ -9,9 +10,11 @@ $(document).ready(function() {
$(this).animate({"border-radius": "20px", "background-color": "rgba(0,0,0,0)"}, 200)
})
$(".textlink").mouseenter(function() {
$(this).stop()
$(this).animate({"color": "darkblue", "font-size": "120%"}, 200)
})
$(".textlink").mouseleave(function() {
$(this).stop()
$(this).animate({"color": "black", "font-size": "100%"}, 200)
})
setTimeout(highlightLocation, 200)

0
js/specialanimations.js Normal file
View File