jQuery Parallax Scroll disable on mobile/tablet












0















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!










share|improve this question























  • 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
















0















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!










share|improve this question























  • 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














0












0








0








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!










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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



















  • 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












1 Answer
1






active

oldest

votes


















2














@media(max-width: 480px){
.js__parallax-window {
background-attachment: unset !important;
}
}


Use this code in your css file, this will help for sure






share|improve this answer
























  • 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











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
});


}
});














draft saved

draft discarded


















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









2














@media(max-width: 480px){
.js__parallax-window {
background-attachment: unset !important;
}
}


Use this code in your css file, this will help for sure






share|improve this answer
























  • 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
















2














@media(max-width: 480px){
.js__parallax-window {
background-attachment: unset !important;
}
}


Use this code in your css file, this will help for sure






share|improve this answer
























  • 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














2












2








2







@media(max-width: 480px){
.js__parallax-window {
background-attachment: unset !important;
}
}


Use this code in your css file, this will help for sure






share|improve this answer













@media(max-width: 480px){
.js__parallax-window {
background-attachment: unset !important;
}
}


Use this code in your css file, this will help for sure







share|improve this answer












share|improve this answer



share|improve this answer










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



















  • 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




















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks