我已经找过了,但我只是越来越糊涂了。
我想使用此脚本在向下滚动200px后显示菜单栏:https://redvinestudio.com/how-to-make-a-menu-fade-in-on-scroll-using-jquery/
我将CSS开关设置为自我解释-以放入自定义。css
然后我把这个放在functions.php (我使用的是儿童主题):
function add_latest_jquery() {
if ( !is_admin() ) {
wp_deregister_script(\'jquery\');
wp_register_script(\'jquery\', \'http://code.jquery.com/jquery-latest.js\', false);
wp_enqueue_script(\'jquery\');
}
}
add_action(\'wp_print_scripts \', \'add_latest_jquery\');
我不确定这是否正确,因为
!is_admin()
我只是不知道在哪里以及如何放置以下内容:
<script type="text/javascript">
(function($) {
$(document).ready(function(){
$(window).scroll(function(){
if ($(this).scrollTop() > 200) {
$(\'#menu\').fadeIn(500);
} else {
$(\'#menu\').fadeOut(500);
}
});
});
})(jQuery);
</script>
谢谢!