pixelcog / parallax.js

Simple parallax scrolling effect inspired by Spotify.com implemented as a jQuery plugin
MIT License
3.53k stars 838 forks source link

small bug fix: add quote around url for background-image css #195

Closed jimiwhite1020 closed 7 years ago

jimiwhite1020 commented 7 years ago

With the old version, the background-image on mobile is not working when the image url has some spaces in it.

background-image: url(blah blah); /* not working! */

So, I just added quotation mark so that the style should look like this:


background-image: url('blah blah'); /* fixed! */