TYPO3 Logo
Camaliga: A carousel/gallery/map/list extension that can use the TYPO3 categories and different jQuery-plugins.
Release: 13.0

Loading data.

  • Introduction
    • What does it do?
    • Screenshots
    • Contact
    • Thanks to ...
  • User Guide
    • FAQ
  • Administration
    • Configuration via Extension Configuration
    • HTML-Templates
    • Extended Templates
    • Maps
    • Proximity search
    • Template variables
    • ViewHelpers
    • Categories
    • The backend module
    • Slug
    • RealUrl
    • Scheduler-Tasks
    • Extend the Camaliga tables
    • FAQ
  • Configuration
    • TypoScript-Reference
    • Carousel-Configuration
    • Page TSconfig
    • Linkhandler
    • FAQ
  • Tutorial
  • Updating to camaliga 5.0.0
  • Updating to camaliga 6.0.0
  • Updating to camaliga 7.0.0
  • Updating to camaliga 8.0.0 or 9.0.0
  • Known problems
  • ChangeLog

PAGE CONTENTS

  • Carousel-Configuration
    • Example
  1. Start
  2. Configuration
  3. Carousel-Configuration
View source How to edit Edit on GitHub

Display settings


Color scheme of code blocks:


Carousel-Configuration¶

  • This extension comes with its own jQuery carousel plugin. All other jQuery-Plugins must be downloaded and copied into the fileadmin- folder. The onboard plugin is a basic carousel with some options. I will describe them here. You can use the jQuery-plugin twice if you wand to animate the image and text separated. The CarouselSeparated.html templates does that. “.camaliga” must be specified for each ul-element with the li-elements of Camaliga.

Property

Data type

Description

Default

auto_slide

boolean

0: no.

1: yes, automatic sliding.

0

hover_pause

boolean

0: no.

1: yes, pause the automatic sliding on mouse hover.

0

auto_slide_seconds

int

Automatic sliding after … milliseconds.

7500

infinitive

boolean

0: no.

1: yes, but you need in this case at least n+2 elements (n: number of visible elements)!

0

item_width

int

Width of an element: width + padding + margin. You must specify this only if the padding or margin of the li-element is >0. Otherwise the plugin calculates the width automatic.

0

li_name

string

Normally the plugin gets all li-elements of the specified ul-element. If you have other ul-elements in your li-element, you must use a class for the li-elements with the camaliga-elements and you must tell the plugin the name of that class.

li

left_scroll

string

Class or ID of the DIV element with the left scroll arrow. This is needed if infinitive is 0 and if you want to display an inactive arrow on the beginning of the carousel. The plugin adds the class “camaliga_first” to this div if the first element is shown left.

right_scroll

string

Class or ID of the DIV element with the right scroll arrow. This is needed if infinitive is 0 and if you want to display an inactive arrow on the end of the carousel. The plugin adds the class “camaliga_last” to this div if the last element is shown right.

Example¶

Here an example with some settings:

$('#carousel_ul').camaliga({
        auto_slide: 0,
        hover_pause: 0,
        auto_slide_seconds: 5000,
        infinite: 0,
        item_width: 215,
        li_name: 'li.carousel_li',
        left_scroll: '#left_scroll',
        right_scroll: '#right_scroll'
});
  • Previous
  • Next
  • Home
  • Contact
  • Issues

Page last updated: Oct 17, 2024 15:38

Last rendered: Oct 17, 2024 15:40

  • TYPO3 Theme 4.9.0
  • DRC v3.2.1
© Copyright Kurt Gusbeth
  • Legal Notice
  • Privacy Policy
  • Code of Conduct