-
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 I can make an autoplay of sliders #532
Comments
This is not about fullpage.js, this is about jQuery / Javascript knowledge. Using the method $(document).ready(function () {
$('#fullpage').fullpage({
sectionsColor: ['#1bbc9b', '#4BBFC3'],
loopBottom: true,
afterRender: function () {
setInterval(function () {
$.fn.fullpage.moveSlideRight();
}, 1000);
}
});
}); |
that was quick reply |
can we pause the slides on hover? |
@CodeStorming try it. |
I actually took a different approach to my website now.But anyways thanks for the reply. |
How i can make an autoplay of sliders by id? |
This is not working for me, could there be an update that has rendered this fix out-of-date? |
@HowellCG it is working on the link. You are definitely doing something wrong. |
This Code however provides auto play. but after placing in HTML (fullPage.js-master/examples/navigationH.html) it adds multiple fpControlArrow code $(document).ready(function () { |
Is there anyway to loop through the sliders. |
@ajmaurya99 check out this topic: #124 |
hi, i have two horizontal slides in my page. and i want to disable the autoplay on one of the slide using EDIT: got it working afterLoad: function(anchorLink, index) {
if (index == 1) {
autoslide = setInterval(function() {
$.fn.fullpage.moveSlideRight();
}, 5000);
} else {
if (autoslide) {
clearInterval(autoslide);
autoslide = 0;
}
}
} not pretty. plus I'm using a global |
I want to create some sections that scroll horizontally? I don't want sliders/carousels. I need sections that scroll horizontally. Is that possible with fullPage.js? |
@ninadakolekar did you check the Scroll Horizontally extension? |
Hello, the fiddle is not working, and when I copy the code it gives me an error: "Uncaught TypeError: $(...).fullpage is not a function I've tried to fix it but it doesn't work, Could you help me please?
|
The code is using the jQuery initialization. |
Hi, its possible to autoslide only one slide section and leave the others only to use the keyarrows? |
@jloguercio many things are possible with the right knowledge. Use the search on this forum or on Google to find your answer. It has been answered many times. |
Hi, how I can configure slides autoplay in Angular? Thanks in advance. |
Same way than here: |
I was trying with this: https://alvarotrigo.com/fullPage/help/how-to-autoplay-horizontal-slides-in-fullpage-js/ `afterLoad: function (origin: any, destination: any, direction: any) {
Any idea? Thanks |
zeroseisdesign commented 23 minutes ago • `afterLoad: function (origin: any, destination: any, direction: any) {
}, };` |
@zeroseisdesign for angular issues please use the angular wrapper forum. |
How I can make an autoplay of sliders?
hello thank you very much for your work
my problem is that I can not do
the sliders alone activate
in other words
I want to make an autoplay sliders
as I can do?
thank you very much
The text was updated successfully, but these errors were encountered: