ていないとき、私は次の固定ナビゲーションプラグインで使用しています - https://codyhouse.co/demo/vertical-fixed-navigation/index.html垂直固定ナビゲーションのセクションでは、完全な高さ
を、それは断面の中心を選ぶと、各セクションには、100%の高さを持っているとき、それは素晴らしい作品が、私のセクションは100%の高さではありません。
これを小さなセクションでも使用する方法はありますか?
あなたが見ることができるように、彼らは、画面の中心点にないよう、それも上部または下部のセクションを強調表示しません。
JS:
jQuery(document).ready(function($){
var contentSections = $('.cd-section'),
navigationItems = $('#cd-vertical-nav a');
updateNavigation();
$(window).on('scroll', function(){
updateNavigation();
});
//smooth scroll to the section
navigationItems.on('click', function(event){
event.preventDefault();
smoothScroll($(this.hash));
});
//smooth scroll to second section
$('.cd-scroll-down').on('click', function(event){
event.preventDefault();
smoothScroll($(this.hash));
});
//open-close navigation on touch devices
$('.touch .cd-nav-trigger').on('click', function(){
$('.touch #cd-vertical-nav').toggleClass('open');
});
//close navigation on touch devices when selectin an elemnt from the list
$('.touch #cd-vertical-nav a').on('click', function(){
$('.touch #cd-vertical-nav').removeClass('open');
});
function updateNavigation() {
contentSections.each(function(){
$this = $(this);
var activeSection = $('#cd-vertical-nav a[href="#'+$this.attr('id')+'"]').data('number') - 1;
if (($this.offset().top - $(window).height()/2 < $(window).scrollTop()) && ($this.offset().top + $this.height() - $(window).height()/2 > $(window).scrollTop())) {
navigationItems.eq(activeSection).addClass('is-selected');
}else {
navigationItems.eq(activeSection).removeClass('is-selected');
}
});
}
function smoothScroll(target) {
$('body,html').animate(
{'scrollTop':target.offset().top},
600
);
}
});
高さが100%の場合、画面の高さの100%を意味しますか? –
はい、申し訳ありませんが、私はより具体的にすべきでした。私のセクションは、ブラウザの高さが100%ではなく、フィドルと同じです。ブラウザの下部がdivの上部に当たるとセクションを強調表示するようにこれを適合させる方法はありますか? – Madness
このセクションのハイライトで何を意味するのか分かりませんか?色のハイライトを変更する、または完全に中央に揃えたいですか? –