Questions tagged [drupal-jcarousel]

jCarousel is the name of a Drupal module that allows to integrate the jQuery plugin jCarousel in Drupal.

The module exposes an API that allows other modules to integrate the jQuery plugin in their pages.

The main function is jcarousel_add() which accepts two arguments:

  • $class_name: The CSS class of the element which will become the carousel. Multiple carousels may have the same carousel ID and all their settings will be shared.
  • $settings: The configuration options that are sent during the creation of the jCarousel element (optional). The configuration options can be found at http://sorgalla.com/projects/jcarousel/#Configuration. A few special keys may also be provided in $settings, such as $settings['skin'], which can be used to apply a specific skin to the carousel. jCarousel module comes with a few skins by default, but other modules can provide their own skins by implementing hook_jcarousel_skin_info().
6 questions
1
vote
3 answers

how to slide jcarousel manually

i am using jcarousel in drupal as below: jcarousel_add('#jcarousel', array('vertical' => false, 'scroll' => 3, 'horizontalDirection' => $direction, 'initCallback' => 'slCarousel_initCallback') ); now to ask the question as simple…
Alaa
  • 4,471
  • 11
  • 50
  • 67
0
votes
2 answers

Use JCarousel with pager

I would like to use the Drupal module JCarousel with a pager. But apperently, there is some kind of bug or error which doesn't allow me to use a pager... All I get is this error, twice... - The jCarousel style cannot be used with a pager. Disable…
Michiel
  • 7,855
  • 16
  • 61
  • 113
0
votes
2 answers

Building a slideshow with the jCarousel module

I'm using jCarousel to build a slideshow that displays in a block. The content type has image upload fields and those images are going to display in the carousel. I want that every node has a different images in the carousel. In Views I defined…
eXoSaX
  • 149
  • 1
  • 1
  • 11
0
votes
1 answer

Drupal 7 theme css added to a views page when used as the front/home page

I am a CSS noob and I created a carousel using jCarousel. It works like it should as a page and with tabbed menus. The problem is the theme adds CSS to it when I go to /admin/config/system/site-information and make the view the default front page.…
-1
votes
1 answer

show text under each image from alt property in JCarousel

I am using JCarousel for creating a slider on my site. Now it is itself easy to implement, I am having hard time showing a description under each image taken from the alt property.
Steve
  • 2,546
  • 8
  • 49
  • 94
-1
votes
1 answer

understanding setTimeout()

I'm trying to make jcarousel work both sides If I use the following it returns the correct alert this.timer = window.setTimeout( (a === 0.5)? alert("c.next() a = " + a): (a === 0.6)? alert("c.prev() a = " + a): …