Рассчитать позиционирование изображения, чтобы следить за скроллером
Я хочу нарисовать линию на экране от верхней части страницы до нижней части, когда пользователь прокручивает страницу и имеет стрелку внизу. Я не хочу использовать фиксированное положение, чтобы он всегда находился в одном и том же месте, я хочу, чтобы он указывал, где они находятся на странице, определяя длину страницы и т.д.
У меня есть следующий код, который работает с точкой. Проблема с этим заключается в том, что стрелка исчезает в нижней части страницы, когда я прокручиваю ее чуть позже на полпути вниз.
Я пробовал разные варианты этого кода, но никто не работает. Может ли кто-нибудь помочь?
//Draw dotted line on scroll - works to certain extent but scrolls off page
$( window ).scroll(function() {
if ( $.windowScrollTop() > 10 ) {
var pos = $.windowScrollTop();
var scrollHeight = $(window).innerHeight();
var element = $('#dashes');
$( '#line' ).css( 'height', pos - scrollHeight / 4 );
$( '#arrow' ).css( 'top', pos - scrollHeight / 4 );
} else {
$( '#line' ).css( 'height', '6px' );
$( '#arrow' ).css( 'top', '-150px' );
}
});
//also tried the below
$(window).on("scroll", function() {
var scrollHeight = $(document).height();
var scrollPosition = $(window).height() + $(window).scrollTop();
if ((scrollHeight - scrollPosition) / scrollHeight === 0) {
// when scroll to bottom of the page
alert('bottom');
} else {
$( '#line' ).css( 'height', $(window).scrollTop() );
$( '#arrow' ).css( 'top', $(window).scrollTop() );
}
});
Ответы
Ответ 1
То, что мы пытаемся сделать здесь, отражает высоту документа в элементе высоты окна. Таким образом, фактическая высота прокручиваемого документа будет
var actualScrollHeight = $(document).height() - $(window).height();
/* This is the distance we actually scroll */
И наша #line
будет иметь максимально возможную высоту
var lineMaxHeight = $(window).height() - topMargin - bottomMargin - arrowHeight;
/* #arrow is inside #line but we positioned it outside it height */
Нет, чтобы отразить ход прокрутки на высоте элементов #line
, что нам нужно сделать, это
var lineHeight = $(document).scrollTop() / actualScrollHeight * lineMaxHeight;
/* Super Easy, isn't it? */
Конечный результат:
Вам не нужно размещать как #line
, так и #arrow
. Исправьте #arrow
внизу #line
, а затем просто измените высоту #line
, просто отлично. Я добавил функцию topMargin
и bottomMargin
, которая улучшает настройку экрана.
$(function(){
var topMargin = 15, bottomMargin = 5;
var arrowHeight = $('#arrow').height();
var $lineElement = $('#line');
$lineElement.height(topMargin);
$(window).scroll(function() {
var winHeight = $(window).height();
var actualScrollHeight = $(document).height() - winHeight;
var lineMaxHeight = winHeight - topMargin - bottomMargin - arrowHeight;
var scrollTop = $(document).scrollTop();
var lineHeight = scrollTop / actualScrollHeight * lineMaxHeight;
$lineElement.height(topMargin + lineHeight);
});
});
#logo {
width: 80px;
background-color: #53befd;
padding: 20px;
}
#line {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAMCAYAAABBV8wuAAAAFklEQVR42mNgoB74OEXzPzY8sBLUAwB6PmBV1D+CIAAAAABJRU5ErkJggg==);
position: fixed;
top: 0px;
right: 19px;
z-index: 20;
width: 3px;
}
#arrow {
background-color: #f28323;
height: 40px;
width: 40px;
position: absolute;
bottom: -40px;
left: -18px;
border-radius: 20px;
color: white;
text-align: center;
font-size: 32px;
line-height: 35px;
padding-top: 3px;
cursor: pointer;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="logo">LOGO </div>
<p> Page content go here<br /> and here<br /> and here<br /> and here<br /> and here</p><p> Page content go here<br /> and here<br /> and here<br /> and here<br /> and here</p><p> Page content go here<br /> and here<br /> and here<br /> and here<br /> and here</p><p> Page content go here<br /> and here<br /> and here<br /> and here<br /> and here</p><p> Page content go here<br /> and here<br /> and here<br /> and here<br /> and here</p><p> Page content go here<br /> and here<br /> and here<br /> and here<br /> and here</p><p> Page content go here<br /> and here<br /> and here<br /> and here<br /> and here</p><p> Page content go here<br /> and here<br /> and here<br /> and here<br /> and here</p><p> Page content go here<br /> and here<br /> and here<br /> and here<br /> and here</p><p> Page content go here<br /> and here<br /> and here<br /> and here<br /> and here</p>
<div id="line"><div id="arrow">V</div></div>
Ответ 2
Ваши подходы выглядят так, будто вы переусердствовали. Я вижу элемент HTML progress
, повернутый на 180 градусов для визуального. Затем динамически устанавливайте атрибут value
с помощью JS, когда пользователь прокручивает, и линия по существу будет выглядеть как анимация вниз.
// PROGRESS INDICATOR
// Calculate height of main object and the window, set max attr of progress accordingly
var winHeight = $(window).height(),
sectionHeight = $('#line').height(),
progressBar = $('progress'),
max,
value;
// Set the maximum scrollable area
max = sectionHeight - winHeight;
progressBar.attr('max', sectionHeight);
// Set value attr of progress, changes as user scrolls
$(document).on('scroll', function(){
value = $(window).scrollTop();
progressBar.attr('value', value);
});
CSS для элемента progress будет выглядеть примерно так, где вы помещаете панель как фиксированный элемент на странице и анимируете ее, чтобы постепенно покрывать страницу с помощью JS выше.
Пример CSS:
progress {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
background-color: transparent;
border: none; //firefox fix
color: green;
height: 2.5rem;
margin-top: 20vw;
position: fixed;
top: 8rem;
width: 100vh;
@media (min-width: 768px) and (max-width: 1200px) {
display: block;
transform: rotate(90deg) translateY(1800%);
}
@media (min-width: 1200px) {
display: block;
transform: rotate(90deg) translateY(1200%); // matches content shift to smaller column
}
}
Я построил это на одном из моих клиентских сайтов, если вы хотите увидеть, работает ли в дикой природе (работает только около 1000px и выше поэтому убедитесь, что ваше окно достаточно широкое).
Ответ 3
Вот более простое решение с меньшим количеством кода:
$(function() {
$(window).scroll(function() {
var p = ($('body').height() - $(window).height()) / ($(window).height() - 43);
var scrollTop = $(document).scrollTop() / p;
$(':root').css('--scroll-top', scrollTop + 43 + "px");
});
});
:root {
--scroll-top: 43px;
}
#logo {
width: 80px;
background-color: #53befd;
padding: 20px;
}
.content {
height: 210vh;
background: red;
margin-right: 50px;
}
#line:before {
content: "V";
background-color: #f28323;
height: 40px;
width: 40px;
display: inline-block;
position: absolute;
right: 0;
bottom: 0;
border-radius: 20px;
color: white;
text-align: center;
font-size: 32px;
line-height: 35px;
padding-top: 3px;
cursor: pointer;
}
#line {
position: fixed;
top: 0;
right: 0;
height: var(--scroll-top);
width: 40px;
background: linear-gradient(to bottom, #f28323 50%, transparent 50%) 50% 0/3px 12px repeat-y;
}
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<div id="logo">LOGO </div>
<div class="content"></div>
<div id="line"></div>