Code Caviar_
I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
CSS:
1 2 3 4 5 6 7 8 9 10 11 | body:not(.elementor-editor-active) selector { position: fixed; transition: all 300ms ease-in-out !important; width: 100%; } body:not(.elementor-editor-active) selector.hide { transform: translateY(-100%); } selector.stky { background-color: #ff00cc !important; } |
Javascript:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <script type="text/javascript"> (function($){ var zero = 0; $(window).on('scroll',function(){ $('#navbar').toggleClass('hide', $(window).scrollTop() > zero); if ($(window).scrollTop() >= 100){ $("#navbar").addClass("stky"); } else { $("#navbar").removeClass("stky"); } zero = $(window).scrollTop(); }); })(jQuery); </script> |