-1
<div class="parallax-window" data-parallax="scroll" data-image-src="images/1.jpg"></div>

In css

 .parallax-window {
min-height: 800px;
background: transparent;

i use parallax.js

i need to compatible scroll image with mobile please anyone help..

ekad
  • 14,436
  • 26
  • 44
  • 46
osama ham
  • 11
  • 3

2 Answers2

0

May Be You Could Make Use Of Libraries Like enquire.js(media queries)

https://ihatetomatoes.net/make-parallax-website-responsive/

Shankar Shastri
  • 1,134
  • 11
  • 18
0

In your css file you will need to define the parallax class, then use the following to ensure the parallax image scales responsively:

@media(max-width:648px){.parallax{height: 300px}}
K.Smith
  • 13
  • 4