If I attempt to center a parallax image by doing something like this:
data-bottom-top="background-position:0px 0px;" data-top-bottom="background-position:center -300px;"
I get this javascript error:
Can't interpolate between "{?}px {?}px" and "center {?}px"
So, how do I center a parallax image without triggering a javascript error, or can I just ignore the error?
P.S. After I wrote the above, I may have stumbled on to the fix:
data-bottom-top="background-position:center 0px;" data-top-bottom="background-position:center -300px;"
with "center" on both instances the javascript error goes away, but the image does not center. Can centering be done?
