MediaWiki:Common.js: Difference between revisions

From Buddha-Nature
((by SublimeText.Mediawiker))
((by SublimeText.Mediawiker))
 
(33 intermediate revisions by the same user not shown)
Line 1: Line 1:
// Discover page anchors
$('.fp-arrowUp').click(function(){
$('.fp-arrowUp').click(function(){
     $.fn.fullpage.moveSectionUp();
     $.fn.fullpage.moveSectionUp();
});
});
$('.fp-arrowDown').click(function(){
$('.fp-arrowDown').click(function(){
     $.fn.fullpage.moveSectionDown();
     $.fn.fullpage.moveSectionDown();
});
});
// Move Discover slide buttons to bottom navigation anchors
$('.fp-slidesNav > ul > li:nth-child(1) > a').load('# #SlideOneButton');
$('.fp-slidesNav > ul > li:nth-child(2) > a').load('# #SlideTwoButton');
$('.fp-slidesNav > ul > li:nth-child(3) > a').load('# #SlideThreeButton');
$('.fp-slidesNav > ul > li:nth-child(4) > a').load('# #SlideFourButton');
$('.fp-slidesNav > ul > li:nth-child(5) > a').load('# #SlideFiveButton');
$('.fp-slidesNav > ul > li:nth-child(6) > a').load('# #SlideSixButton');

Latest revision as of 18:26, 16 December 2022

// Discover page anchors
$('.fp-arrowUp').click(function(){
    $.fn.fullpage.moveSectionUp();
});
$('.fp-arrowDown').click(function(){
    $.fn.fullpage.moveSectionDown();
});