This commit is contained in:
Roman Pyrih
2026-04-15 15:50:03 +02:00
parent 0d1de6c85c
commit 98ccfe6d65
14 changed files with 1251 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
jQuery(document).ready(function ($) {
$(window).on('scroll', function () {
$('#header-box').toggleClass('box-fixed', $(this).scrollTop() > 0);
});
});