Hello
Is there a way to program my code in a way, that the website has Background-Attachment Fixed on laptops and PC's and Background-Attachment Scroll on mobile devices?
On ios Background-Attachment Fixed does not work. It can't be done with media queries, because the ipad pro is bigger than my laptop.
Maybe a Javascript or something.
I found this, but not knowing Javascript I don't know if it would work. Could this work?
if (iosVersion >= 7) {
$(document).scroll(function() {
$('#background').css('background-position', '0px ' + $(document).scrollTop() + 'px');
});
}
Can anybody offer some advice?
Thanks a lot
Jakob