Используйте элемент контейнера и добавьте фоновое изображение в контейнер с заданной c высотой. Затем используйте background-attachment: fixed
для создания фактического эффекта параллакса. Другие свойства фона используются для идеального центрирования и масштабирования изображения / Вот пример:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.parallax {
/* The image used */
background-image: url("https://miro.medium.com/max/2046/1*ZJuc_2TsDElu6Gtg_KxiEg.png");
/* Set a specific height */
min-height: 500px;
/* Create the parallax scrolling effect */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<p>Scroll Up and Down this page to see the parallax scrolling effect.</p>
<div class="parallax"></div>
<div style="height:1000px;background-color:red;font-size:36px">
Scroll Up and Down this page to see the parallax scrolling effect.
This div is just here to enable scrolling.
Tip: Try to remove the background-attachment property to remove the scrolling effect.
</div>
</body>
</html>
Вот простой урок , как создать параллаксную прокрутку.