mostly filebased Content Presentation System
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728293031
  1. function toggle_menu(){
  2. var menu = document.querySelector('#mobile-nav');
  3. menu.classList.toggle('open');
  4. }
  5. $( document ).ready(function() {
  6. var mainnav = $("#main-nav");
  7. var platzhalter = $("#platzhalter");
  8. var test = 2;
  9. $(window).on("scroll", function(e) {
  10. var pos = $(document).scrollTop();
  11. var width = $(window).width();
  12. var airAbove = 250;
  13. if (width < 1000) {
  14. if (width > 750) {
  15. airAbove = width/4;
  16. } else {
  17. airAbove = 187;
  18. }
  19. }
  20. if (pos > airAbove) {
  21. mainnav.addClass("fixed");
  22. platzhalter.addClass("fixed");
  23. } else {
  24. mainnav.removeClass("fixed");
  25. platzhalter.removeClass("fixed");
  26. }
  27. });
  28. });