jQuery Parallax Scroll disable on mobile/tablet
I am using a free template to build a static website (http://keenthemes.com/preview/megakit/) but I cannot seem to disable parllax
scroll on mobile.
I have been trying to modify parallax.min.js
file but cannot get it work on mobile devices. Images are not displayed on mobile at all.
Below is the code:
var Parallax=function(){"use strict";var a=function(){$(".js__parallax-window").parallax("50%",.1)};return{init:function(){a()}}}();$(document).ready(function(){if(window.innerWidth>760){Parallax.init()}});
Thanks for your help!
jquery html css parallax
add a comment |
I am using a free template to build a static website (http://keenthemes.com/preview/megakit/) but I cannot seem to disable parllax
scroll on mobile.
I have been trying to modify parallax.min.js
file but cannot get it work on mobile devices. Images are not displayed on mobile at all.
Below is the code:
var Parallax=function(){"use strict";var a=function(){$(".js__parallax-window").parallax("50%",.1)};return{init:function(){a()}}}();$(document).ready(function(){if(window.innerWidth>760){Parallax.init()}});
Thanks for your help!
jquery html css parallax
I have seen your website images are displaying in mobiles mode. I think the cashing problem is there once you press control+f5 keys.
– Arshiya Khanam
Nov 28 '18 at 5:35
add a comment |
I am using a free template to build a static website (http://keenthemes.com/preview/megakit/) but I cannot seem to disable parllax
scroll on mobile.
I have been trying to modify parallax.min.js
file but cannot get it work on mobile devices. Images are not displayed on mobile at all.
Below is the code:
var Parallax=function(){"use strict";var a=function(){$(".js__parallax-window").parallax("50%",.1)};return{init:function(){a()}}}();$(document).ready(function(){if(window.innerWidth>760){Parallax.init()}});
Thanks for your help!
jquery html css parallax
I am using a free template to build a static website (http://keenthemes.com/preview/megakit/) but I cannot seem to disable parllax
scroll on mobile.
I have been trying to modify parallax.min.js
file but cannot get it work on mobile devices. Images are not displayed on mobile at all.
Below is the code:
var Parallax=function(){"use strict";var a=function(){$(".js__parallax-window").parallax("50%",.1)};return{init:function(){a()}}}();$(document).ready(function(){if(window.innerWidth>760){Parallax.init()}});
Thanks for your help!
jquery html css parallax
jquery html css parallax
asked Nov 28 '18 at 5:01
YoungYoung
9912
9912
I have seen your website images are displaying in mobiles mode. I think the cashing problem is there once you press control+f5 keys.
– Arshiya Khanam
Nov 28 '18 at 5:35
add a comment |
I have seen your website images are displaying in mobiles mode. I think the cashing problem is there once you press control+f5 keys.
– Arshiya Khanam
Nov 28 '18 at 5:35
I have seen your website images are displaying in mobiles mode. I think the cashing problem is there once you press control+f5 keys.
– Arshiya Khanam
Nov 28 '18 at 5:35
I have seen your website images are displaying in mobiles mode. I think the cashing problem is there once you press control+f5 keys.
– Arshiya Khanam
Nov 28 '18 at 5:35
add a comment |
1 Answer
1
active
oldest
votes
@media(max-width: 480px){
.js__parallax-window {
background-attachment: unset !important;
}
}
Use this code in your css file, this will help for sure
works like a charm! Thank you so much!
– Young
Nov 28 '18 at 5:43
Is is also possible to make sure that the image is not distorted when mobile is rotated?
– Young
Nov 28 '18 at 5:47
what do you mean by image distorted here? I am not getting it
– Atul
Nov 28 '18 at 5:51
Sorry for the confusion. For example, one of the image is only showing half if the actual image when phone is rotated
– Young
Nov 28 '18 at 5:55
oh,, tell me the exact image in your design on website, will try to fix it if I can and will give you the code.
– Atul
Nov 28 '18 at 12:57
|
show 1 more comment
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53512438%2fjquery-parallax-scroll-disable-on-mobile-tablet%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
@media(max-width: 480px){
.js__parallax-window {
background-attachment: unset !important;
}
}
Use this code in your css file, this will help for sure
works like a charm! Thank you so much!
– Young
Nov 28 '18 at 5:43
Is is also possible to make sure that the image is not distorted when mobile is rotated?
– Young
Nov 28 '18 at 5:47
what do you mean by image distorted here? I am not getting it
– Atul
Nov 28 '18 at 5:51
Sorry for the confusion. For example, one of the image is only showing half if the actual image when phone is rotated
– Young
Nov 28 '18 at 5:55
oh,, tell me the exact image in your design on website, will try to fix it if I can and will give you the code.
– Atul
Nov 28 '18 at 12:57
|
show 1 more comment
@media(max-width: 480px){
.js__parallax-window {
background-attachment: unset !important;
}
}
Use this code in your css file, this will help for sure
works like a charm! Thank you so much!
– Young
Nov 28 '18 at 5:43
Is is also possible to make sure that the image is not distorted when mobile is rotated?
– Young
Nov 28 '18 at 5:47
what do you mean by image distorted here? I am not getting it
– Atul
Nov 28 '18 at 5:51
Sorry for the confusion. For example, one of the image is only showing half if the actual image when phone is rotated
– Young
Nov 28 '18 at 5:55
oh,, tell me the exact image in your design on website, will try to fix it if I can and will give you the code.
– Atul
Nov 28 '18 at 12:57
|
show 1 more comment
@media(max-width: 480px){
.js__parallax-window {
background-attachment: unset !important;
}
}
Use this code in your css file, this will help for sure
@media(max-width: 480px){
.js__parallax-window {
background-attachment: unset !important;
}
}
Use this code in your css file, this will help for sure
answered Nov 28 '18 at 5:18
AtulAtul
45913
45913
works like a charm! Thank you so much!
– Young
Nov 28 '18 at 5:43
Is is also possible to make sure that the image is not distorted when mobile is rotated?
– Young
Nov 28 '18 at 5:47
what do you mean by image distorted here? I am not getting it
– Atul
Nov 28 '18 at 5:51
Sorry for the confusion. For example, one of the image is only showing half if the actual image when phone is rotated
– Young
Nov 28 '18 at 5:55
oh,, tell me the exact image in your design on website, will try to fix it if I can and will give you the code.
– Atul
Nov 28 '18 at 12:57
|
show 1 more comment
works like a charm! Thank you so much!
– Young
Nov 28 '18 at 5:43
Is is also possible to make sure that the image is not distorted when mobile is rotated?
– Young
Nov 28 '18 at 5:47
what do you mean by image distorted here? I am not getting it
– Atul
Nov 28 '18 at 5:51
Sorry for the confusion. For example, one of the image is only showing half if the actual image when phone is rotated
– Young
Nov 28 '18 at 5:55
oh,, tell me the exact image in your design on website, will try to fix it if I can and will give you the code.
– Atul
Nov 28 '18 at 12:57
works like a charm! Thank you so much!
– Young
Nov 28 '18 at 5:43
works like a charm! Thank you so much!
– Young
Nov 28 '18 at 5:43
Is is also possible to make sure that the image is not distorted when mobile is rotated?
– Young
Nov 28 '18 at 5:47
Is is also possible to make sure that the image is not distorted when mobile is rotated?
– Young
Nov 28 '18 at 5:47
what do you mean by image distorted here? I am not getting it
– Atul
Nov 28 '18 at 5:51
what do you mean by image distorted here? I am not getting it
– Atul
Nov 28 '18 at 5:51
Sorry for the confusion. For example, one of the image is only showing half if the actual image when phone is rotated
– Young
Nov 28 '18 at 5:55
Sorry for the confusion. For example, one of the image is only showing half if the actual image when phone is rotated
– Young
Nov 28 '18 at 5:55
oh,, tell me the exact image in your design on website, will try to fix it if I can and will give you the code.
– Atul
Nov 28 '18 at 12:57
oh,, tell me the exact image in your design on website, will try to fix it if I can and will give you the code.
– Atul
Nov 28 '18 at 12:57
|
show 1 more comment
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53512438%2fjquery-parallax-scroll-disable-on-mobile-tablet%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I have seen your website images are displaying in mobiles mode. I think the cashing problem is there once you press control+f5 keys.
– Arshiya Khanam
Nov 28 '18 at 5:35