0
ヒーローをスクロールしてFullPage.JSを開始しようとしています。あなたがヒーローをスクロールすると今すぐ - FullPageが初期化され、最初のスクロールの勢いでスライドをスクロールし続けます。私は自分のinitのためにこの機能を持っています。ヒーローをスクロールしてFullPage.JSを初期化しようとしています
function initFullPage(){
$(".view-case-study").addClass("projects-load");
$(".pagination").addClass("visible");
$(".logo-menu svg").toggleClass("hovered");
$('#fullpage').fullpage({
lazyLoading:false,
navigation: true,
navigationPosition: 'right',
css3:true,
normalScrollElementTouchThreshold: 5,
touchSensitivity: 10,
anchors: a_anchors,
menu: '#myMenu',
normalScrollElements: '.nav, .open-nav, .project-inner, .work-mode, .menu-shelf, .tab, .view-case-study, #hero, .hero-center-container',
afterLoad: function(anchorLink, index){
var loadedSection = $(this);
projectUrl = loadedSection.data('url');
project_title = loadedSection.data('title');
loadedSection.addClass('projects-load');
loadedSection.find(".full-line").animate({'width':'100%'},500);
loadedSection.animate({'background-position-y':'-20px','background-size':'120%'},1000);
$('#hero').animate({'opacity':'0'},1000);
$('#hero').addClass('destroy');
$('.ui-info').animate({'opacity':'1'},350);
},
onLeave: function(index, nextIndex, direction){
var leavingSection = $(this);
leavingSection.removeClass('projects-load');
leavingSection.find(".full-line").animate({'width':'0%'},250);
leavingSection.animate({'background-position-y':'0px','background-size':'110%'},100);
$('#project-inner-container').animate({scrollTop:0},0);
$('.ui-info').animate({'opacity':'0'},0);
}
});
fullPageInit = true;
}
以下は私のヒーロースクロールスクリプトです。私はスクリプトとsilentmoveを最初のセクションに初期化しようとしましたが、聞きたくありません。
var winHeight = $(window).height();
$(window).scroll(function() {
var scrTop = $(document).scrollTop()/winHeight,
scrTopFixed = scrTop.toFixed(2),
scrTransform = scrTopFixed * 80,
bgPos = scrTransform/10 + 95,
heroOpacity = 1 - scrTransform/100;
if ((scrTransform >= 80) && (fullPageInit == false)) {
initFullPage();
$.fn.fullpage.silentMoveTo('#sidepocket');
}
$('svg.scroll-end').css({
'clip': "rect(0px," + scrTransform + "px,200px,0px)",
});
}); // Close
FullPage.JSにカスタムスクリプトを構築しようとしている他の人に役立ちますか? – Alvaro
あなたの例では、http://alvarotrigo.com/fullPage/examples/scrolling.htmlスクロールの勢いはまだ次のセクションに引き継がれます。 スクロールすると、現在のスライドをスクロールし続けます。また、自分自身を削除/破壊してsection-01を持ち込む前に、スクロールsvgを埋めるようにします – alcoven
あなたのヒーローはスクロールバーを使用していますか? – Alvaro