neoContentSlider
Image and content slider based on bxslider.com
V: 2.0
Slides can contain images, containers, or iframes.
Advanced touch / swipe support built-in
Very simple to use:
Just add images or other Containers into a Container Object. Initialize and ready!
Description
The neoContentSlider plugin for VisualNEO Web is a versatile, touch-enabled slider that displays images, containers, or iframes within a customizable carousel. Key functionalities include:
- Slider Initialization:
- neoContentSliderInit: Sets up the slider with configurable options, including animation modes (horizontal, vertical, fade), autoplay, speed, and navigation controls.
- User Navigation:
- Commands like neoContentSliderGoToNextSlide, neoContentSliderGoToPrevSlide, and neoContentSliderGotoSlide allow users to navigate between slides manually.
- Autoplay Control:
- Autoplay can be managed with neoContentSliderStartAuto and neoContentSliderStopAuto, giving developers control over automated slide transitions.
- Dynamic Slide Information:
- Commands neoContentSliderGetSlideCount and neoContentSliderGetCurrentSlide retrieve slide numbers and total count, enabling interactive features like navigation indicators.
This plugin is ideal for dynamic displays, image galleries, or content carousels in VisualNEO Web apps, supporting smooth, touch-friendly interaction and customizable display options for a polished, engaging user experience.
neoContentSliderInit
Purpose: |
Initializes Content Slider |
Category: |
neoContentSlider |
Syntax: |
neoContentSliderInit "containerId" mode autoStartSlides speed pause theMinSlides theMaxSlides theMoveSlides theSlideWidth theSlideMargin pager controls
containerId Select a container with images from your App mode Select mode autoStartSlides Autostart playing slider (true/false) speed Speed in milliseconds (ie: 500) pause Pause between images in milliseconds (ie: 3000) Be sure it's greater than speed! theMinSlides The minimum number of slides to be shown (default 1). theMaxSlides The maximum number of slides to be shown (default 1). theMoveSlides The number of slides to move on transition (default 0). theSlideWidth The width of each slide. (dafault 0) theSlideMargin Margin between each slide (ie: 10) pager Show pager (true/false) controls Show controls (true/false) |
neoContentSliderGoToNextSlide
Purpose: |
Go to next slide |
Category: |
neoContentSlider |
Syntax: |
neoContentSliderGoToNextSlide "containerId"
containerId Select a container previously initialized with slInitSlider |
neoContentSliderGoToPrevSlide
Purpose: |
Go to previous slide |
Category: |
neoContentSlider |
Syntax: |
neoContentSliderGoToPrevSlide "containerId"
containerId Select a container previously initialized with slInitSlider |
neoContentSliderGotoSlide
Purpose: |
Jumps to a specific slide |
Category: |
neoContentSlider |
Syntax: |
neoContentSliderGotoSlide "containerId" slide
containerId Select a container previously initialized with slInitSlider slide Slide number to jump to |
neoContentSliderStartAutoSlider
Purpose: |
Starts the auto slider |
Category: |
neoContentSlider |
Syntax: |
neoContentSliderStartAutoSlider "containerId"
containerId Select a container previously initialized with slInitSlider |
neoContentSliderStopAutoSlider
Purpose: |
Stops the auto slider |
Category: |
neoContentSlider |
Syntax: |
neoContentSliderStopAutoSlider "containerId"
containerId Select a container previously initialized with slInitSlider |
neoContentSliderGetCurrentSlide
Purpose: |
Returns the current slide |
Category: |
neoContentSlider |
Syntax: |
neoContentSliderGetCurrentSlide "containerId" [result]
containerId Select a container previously initialized with slInitSlider result Variable name to store the result slide number |
neoContentSliderGetSlideCount
Purpose: |
Returns the total number of slides |
Category: |
neoContentSlider |
Syntax: |
neoContentSliderGetSlideCount "containerId" [result]
containerId Select a container previously initialized with slInitSlider result Variable name to store the result number of slides |
Created with the Personal Edition of HelpNDoc: Qt Help documentation made easy