-
Notifications
You must be signed in to change notification settings - Fork 7.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to stop the plugin on device width? #743
Comments
Please read this answer. This is about responsive design, not really about fullpage.js |
Also this another one. |
ok. thanks |
And one more thing, in onepage-scroll there is an option of updateurl as true or false, can I do that using this plugin. |
If you read the documentation you will see there's an option for it called |
Ok. I followed your link about responsive design, and it worked with not showing if the screen is less than 480px, but the second part, i.e I want to add the 'slide' when the screen is more than 480 but less than 768px. This is my code:
}); Can you help me with this please. |
Can you help me with this please |
You should ask in another forum. This forum is to treat fullpage.js issues or questions |
|
Hey,
I am building an one page website, and I am using Fullpage.js.
<script> $(document).ready(function(){ $(window).resize(function(){ if ($("#home-text-responsiveness").css("font-size") == "40px" ){ $("#fullpage").fullpage().stop(); } }); }); </script>I want that when the device width is less than 580px, the plugin stops to work and normal scrolling begin.
I am using this code for that but it is not working:
I have a three column container and want that when the device width is <= 768px those column turn into slider using Fullpage.js slider functionality.
Any help regarding this?
The text was updated successfully, but these errors were encountered: