Guest User

Untitled

a guest
Jan 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. $(function() {
  2. $(window).on("scroll", function() {
  3. if($(window).scrollTop() > 50) {
  4. $(".site-header").addClass("active");
  5. } else {
  6. //remove the background property so it comes transparent again (defined in your css)
  7. $(".site-header").removeClass("active");
  8. }
  9. });
  10.  
  11. function my_scripts_method() {
  12. wp_enqueue_script(
  13. 'header-active',
  14. get_stylesheet_directory_uri() . '/js/header-ative.js',
  15. array( 'jquery' )
  16. );
Add Comment
Please, Sign In to add comment