我在我的WordPress网站上运行Foundation 6,我有一个很好的粘贴标题。但是当我添加自己的使用onscroll函数的Jquery函数时,标题停止工作。谁知道为什么?
JS:**
jQuery(window).on('scroll', function(){
var scrollTop = jQuery(window).scrollTop();
if(scrollTop > 265)
{
jQuery('.panel-grid-cell').addClass('hidden')();
}
});
<div id="top" class="show-for-<?php echo $breakpoint ?>" data-sticky-container>
<div class="sticky" data-sticky data-top-anchor="pgc-226-pgstart-0:top" data-btm-anchor="content:bottom" data-options="marginTop: 0" data-sticky-on="<?php echo $breakpoint ?>" style="width:100%;z-index:99;" id="menucontainer">
<div class="top-bar row" id="top-bar-menu" style="z-index:99;">
<div class="top-bar-left">
<?php if( get_field('website_logo', 'option') ): ?>
<a href="<?php echo get_site_url(); ?>"><img class="site-logo" src="<?php the_field('website_logo', 'option'); ?>" height="<?php the_field('logo_height', 'option'); ?>" alt="site-logo"></a>
<a href="<?php echo get_site_url(); ?>"><img class="site-logo-small site-logo-scroll" src="<?php the_field('website_logo_small', 'option'); ?>" height="<?php the_field('logo_height', 'option'); ?>" alt="site-logo"></a>
<?php endif; ?>
</div>
<div class="top-bar-right">
<?php joints_top_nav(); ?>
</div>
</div>
</div>
</div>
答案 0 :(得分:0)
我找到了答案;我在我的javascript代码中输了一个拼写错误:
jQuery('.panel-grid-cell').addClass('hidden')();
应该是:
jQuery('.panel-grid-cell').addClass('hidden');