MediaWiki:Common.js: Διαφορά μεταξύ των αναθεωρήσεων

Από Trace Project
Χωρίς σύνοψη επεξεργασίας
Χωρίς σύνοψη επεξεργασίας
 
(13 ενδιάμεσες αναθεωρήσεις από τον ίδιο χρήστη δεν εμφανίζεται)
Γραμμή 1: Γραμμή 1:
function reveal() {
  var reveals = document.querySelectorAll(".reveal");


  for (var i = 0; i < reveals.length; i++) {
$(document).ready(function () {
    var windowHeight = window.innerHeight;
    var elementTop = reveals[i].getBoundingClientRect().top;
    var elementVisible = 150;


    if (elementTop < windowHeight - elementVisible) {
$('.scroll-control .one').click(function () {
      reveals[i].classList.add("active");
$.scrollify.move('#s-one');
    } else {
});
      reveals[i].classList.remove("active");
$('.scroll-control .two').click(function () {
    }
$.scrollify.move('#s-two');
  }
});
}
$('.scroll-control .three').click(function () {
$.scrollify.move('#s-three');
});
});


window.addEventListener("scroll", reveal);
function applyScroll() {
$.scrollify({
section: '.scroll',
sectionName: 'section-name',
//standardScrollElements: 'section',
easing: 'easeOutExpo',
scrollSpeed: 1100,
offset: 0,
scrollbars: true,
setHeights: true,
overflowScroll: true,
updateHash: false,
touchScroll: true,
});
}
 
}

Τελευταία αναθεώρηση της 23:54, 15 Φεβρουαρίου 2023


$(document).ready(function () {
	

				$('.scroll-control .one').click(function () {
					$.scrollify.move('#s-one');
				});
				$('.scroll-control .two').click(function () {
					$.scrollify.move('#s-two');
				});
				$('.scroll-control .three').click(function () {
					$.scrollify.move('#s-three');
				});
			});

			
			function applyScroll() {
				$.scrollify({
					section: '.scroll',
					sectionName: 'section-name',
					//standardScrollElements: 'section',
					easing: 'easeOutExpo',
					scrollSpeed: 1100,
					offset: 0,
					scrollbars: true,
					setHeights: true,
					overflowScroll: true,
					updateHash: false,
					touchScroll: true,
				});
			}

			}