mirror of
https://github.com/safing/web
synced 2025-09-02 19:19:03 +00:00
13 lines
406 B
JavaScript
13 lines
406 B
JavaScript
// menubar logic
|
|
$(document).ready(function() {
|
|
// set js style
|
|
// $("#menubar").css("background", "transparent").css("height", "7rem")
|
|
|
|
// $(window).scroll(function () {
|
|
// if ($(this).scrollTop() >= 150) {
|
|
// $("#menubar").css("background", "#38465c").css("height", "1rem")
|
|
// } else {
|
|
// $("#menubar").css("background", "transparent").css("height", "7rem")
|
|
// }
|
|
// })
|
|
})
|