Przykład
Get liczbę pikseli treść w <div> elementu przewijane poziomo i pionowo:
var elmnt = document.getElementById("myDIV");
var x = elmnt.scrollLeft;
var y = elmnt.scrollTop;
Spróbuj sam " Więcej "Try it Yourself" przykłady poniżej.
Definicja i Wykorzystanie
Zestawy własności scrollTop lub zwraca liczbę pikseli zawartość elementu jest przewijane pionowo.
Wskazówka: Użyj scrollLeft właściwość, aby ustawić lub zwróci liczbę pikseli zawartość elementu jest przewijane poziomo.
Wskazówka: Aby dodać paski przewijania do elementu, należy użyć CSS przepełnienia nieruchomości.
Wskazówka: onscroll zdarzenie podczas przewijania elementem jest jest przewijane.
Wsparcie przeglądarka
Nieruchomość | |||||
---|---|---|---|---|---|
scrollTop | tak | tak | tak | tak | tak |
Składnia
Zwraca właściwość scrollTop:
element .scrollTop
Ustaw właściwość scrollTop:
element .scrollTop= pixels
wartości nieruchomości
Wartość | Opis |
---|---|
pixels | Określa liczbę pikseli zawartość elementu jest przewijane w pionie. Specjalne notatki:
|
Szczegóły techniczne
Zwracana wartość: | Liczbą, oznaczającą liczbę pikseli że zawartość elementu została przewijane w pionie |
---|
Więcej przykładów
Przykład
Przewijania zawartości <div> elementu do 50 pikseli w poziomie i w pionie 10 pikseli:
var elmnt = document.getElementById("myDIV");
elmnt.scrollLeft = 50;
elmnt.scrollTop = 10;
Spróbuj sam " Przykład
Przewijania zawartości <div> elementu 50 pikseli w poziomie i w pionie 10 pikseli:
var elmnt = document.getElementById("myDIV");
elmnt.scrollLeft
+= 50;
elmnt.scrollTop += 10;
Spróbuj sam " Przykład
Przewijania zawartość <body> 30 pikseli w poziomie i w pionie 10 pikseli:
var body = document.body; // For Chrome, Safari and Opera
var html =
document.documentElement; // Firefox and IE places the overflow at the
<html> level, unless else is specified. Therefore, we use the
documentElement property for
these two browsers
body.scrollLeft += 30;
body.scrollTop += 10;
html.scrollLeft += 30;
html.scrollTop += 10;
Spróbuj sam " Przykład
Przełączanie między nazwami klas na różnych stanowiskach scroll - Gdy użytkownik przewija w dół 50 pikseli od górnej części strony, nazwa klasy "test" zostaną dodane do elementu (and removed when scrolled up again) .
window.onscroll = function() {myFunction()};
function myFunction() {
if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {
document.getElementById("myP").className = "test";
}
else {
document.getElementById("myP").className
= "";
}
}
Spróbuj sam " Przykład
Przesuń w elemencie, gdy użytkownik przewija w dół 350 pikseli od górnej części strony (add the slideUp class) :
window.onscroll = function() {myFunction()};
function myFunction() {
if (document.body.scrollTop > 350 || document.documentElement.scrollTop >
350) {
document.getElementById("myImg").className = "slideUp";
}
Spróbuj sam " Przykład
Narysuj trójkąt na zwoju:
<!-- Use SVG to draw the triangle (has to be <path>) -->
<svg id="mySVG">
<path
fill="none" stroke="red" stroke-width="3" id="triangle" d="M150 0 L75 200
L225 200 Z">
</svg>
<script>
// Get the id of the
<path> element and the length of <path>
var
triangle = document.getElementById("triangle");
var length =
triangle.getTotalLength();
// The start position of the drawing
triangle.style.strokeDasharray = length;
// Hide the triangle by
offsetting dash. Remove this line to show the triangle before scroll draw
triangle.style.strokeDashoffset = length;
// Find scroll percentage
on scroll (using cross-browser properties), and offset dash same amount as
percentage scrolled
window.addEventListener("scroll", myFunction);
function myFunction() {
var scrollpercent = (document.body.scrollTop
+ document.documentElement.scrollTop) / (document.documentElement.scrollHeight
- document.documentElement.clientHeight);
var draw
= length * scrollpercent;
// Reverse the drawing
(when scrolling upwards)
triangle.style.strokeDashoffset = length - draw;
}
</script>
Spróbuj sam "