We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is it possible to dynamically change the transitionInterval via notification, so that you can switch between manual and automatic navigation?
like:
if (notification === "CAROUSEL_TIMER_TOGGLE") { if (this.config.transitionInterval <= 0) { this.config.transitionInterval = 10000; // <-- any default value this.restartTimer(); // <--start automatic mode } else { this.config.transitionInterval = 0; // <--stop automatic mode ??? // <-- start manual mode } }
The text was updated successfully, but these errors were encountered:
@acimail01 is there an update on this? Would love to also implement this
Sorry, something went wrong.
Developer notes: reference https://github.com/shbatm/MMM-Carousel/blob/c368e895d38069ea100d35980ae871b6a0acc711/MMM-Carousel.js
No branches or pull requests
Is it possible to dynamically change the transitionInterval via notification, so that you can switch between manual and automatic navigation?
like:
The text was updated successfully, but these errors were encountered: