Loading...
 
Skip to main content

History: Infinite_carousel

Preview of version: 25


This uses the Infinite Carousel script for JQuery. See http://www.catchmyfame.com/2009/08/27/jquery-infinite-carousel-plugin-1-2-released/. When Tiki 5 was released, this script was included as part of the Tiki package. Until then, it had to be downloaded and installed separately.

To make the carousel, there are several steps:

  1. In Tiki 5, Infinite Carousel is included as part of the Tiki package, so there is no need to install the script.
  2. No modification of code is needed.
  3. Enable JQuery UI and JQuery Infinite Carousel settings at Admin Home > Look & Feel > UI Effects
  4. The necessary CSS still needs to go in the L&F custom html head content, OR it can go in Admin Home > Look & Feel > Miscellaneous > Custom CSS. Example:
    • width: 7600px has to be the sum of all widths from all images to be displayed in the infinite carousel.
    • Copy to clipboard
      #carousel ul { list-style: none; width: 7600px; margin: 0; padding: 0; position: relative; } #carousel li { display:inline; float:left; background-image: none; padding-left: 0; }
  5. The initialization script can go in a JQ plugin in the wiki page, before the image divs or at Admin Home > Look & Feel > Miscellaneous > Custom JS. Example:
    • Copy to clipboard
      {JQ()}$jq(function(){ $jq('#carousel').infiniteCarousel(); });{JQ}

    Parameters can also be set:
    • Copy to clipboard
      {JQ()}$jq(function(){ $jq('#carousel').infiniteCarousel({ displayThumbnails : 0, textholderHeight : 0, }); });{JQ}

    Here is a list of all the parameters that can be set (from www.catchmyfame.com):
    Parameter Description
    transitionSpeed the time (in milliseconds) it will take to transition between two images (default 1500)
    displayTime the time (in milliseconds) to display each image (default: 6000)
    textholderHeight the height of the caption. This is a fraction of the height of the images. (default: .2)
    displayProgressBar Whether or not to display the progress bar (default: 1)
    displayThumbnails Whether or not to display the thumbnails for the carousel. (default: 1)
    displayThumbnailNumbers Whether or not to automatically place numbers in the thumbnail boxes. (default: 1)
    displayThumbnailBackground Whether or not to use the corresponding image as the background for a thumbnail box. (default: 1)
    thumbnailWidth the width of each thumbnail box. (default: ’20px’)
    thumbnailHeight the height of each thumbnail box. (default: ’20px’)
    thumbnailFontSize the font size of the number within the thumbnail box. (default: .7em)

  6. The image syntax is added to the page as described below.

  1. In Tiki 4, get the script jquery.infinitecarousel.js from the above address.
  2. modify it by changing all instances of "$" in the file to "$jq". This is because JQuery in Tiki is running in compatibility mode.
  3. Upload it to your server.
  4. To initialize the script for use on particular pages, put something like the following in the Look and Feel head custom code. There is an if/then statement that indicates what page the carousel is used on, a link to jquery.infinitecarousel.js, the initialization of the script, and some CSS needed for the carousel div and li items.
Copy to clipboard
{* Infinite carousel start *} {if $page eq 'Infinite_carousel' or $page eq 'HomePage' or $page eq 'Tiki 3 Themes'} <script type="text/javascript" src="lib/jquery/infiniteCarousel/jquery.infinitecarousel.js"></script> {literal} <script type="text/javascript"> $jq(function(){ $jq('#carousel').infiniteCarousel(); }); </script> <style type="text/css"> #carousel ul { list-style: none; width: 7600px; margin: 0; padding: 0; position: relative; } #carousel li { display:inline; float:left; background-image: none; padding-left: 0; } </style> {/literal} {/if}



Then the wiki page needs something like the following. Note that there is a div with the id "carousel", and an unordered list containing the image and a paragraph for the caption.

Copy to clipboard
{DIV(id=>carousel)} * {IMG(src="http://themes.tiki.org/tiki-download_file.php?fileId=85&display",alt="CandiiClouds",height="265px",width="380px")}{IMG}{DIV(type=>p)}__Candii Clouds__ [http://themes.tiki.org/tiki-directory_redirect.php?siteId=66|download]{DIV} * {IMG(src="http://themes.tiki.org/tiki-download_file.php?fileId=86&display",alt="Club Card",height="265px",width="380px")}{IMG}{DIV(type=>p)}__Club Card__ [http://themes.tiki.org/tiki-directory_redirect.php?siteId=80|download]{DIV} * {IMG(src="http://themes.tiki.org/tiki-download_file.php?fileId=87&display",alt="absE",height="265px",width="380px")}{IMG}{DIV(type=>p)}__absE__ [http://themes.tiki.org/tiki-directory_redirect.php?siteId=63|download]{DIV} {DIV}


The procedures described above are for Tiki 4 and Tiki 5. For Tiki 3, there is no Look and Feel "html head" custom code textarea, so templates/header.tpl would have to be edited to add the script.

History

Information Version
Thu 07 of Jun, 2012 22:30 UTC Jonny Bradley jQuery Plugin modified by editor. 44
Thu 07 of Jun, 2012 21:47 UTC Jonny Bradley jQuery Plugin modified by editor. 43
Thu 19 of Apr, 2012 00:04 UTC Marc Laporte Div mismatch 42
Tue 18 of Oct, 2011 16:03 UTC Philippe Cloutier attempt to fix errors with images and use the new example 41
Tue 18 of Oct, 2011 16:01 UTC Philippe Cloutier fix examples using the tiki handler instead (from Jonny's comment) 40
Thu 17 of Mar, 2011 13:09 UTC Gary Cunningham-Lee 39
Thu 17 of Mar, 2011 13:06 UTC Gary Cunningham-Lee 38
Thu 17 of Mar, 2011 13:05 UTC Gary Cunningham-Lee 37
Thu 17 of Mar, 2011 13:04 UTC Gary Cunningham-Lee 36
Thu 17 of Mar, 2011 13:03 UTC Gary Cunningham-Lee 35
Thu 17 of Mar, 2011 13:01 UTC Gary Cunningham-Lee 34
Thu 17 of Mar, 2011 12:55 UTC Gary Cunningham-Lee div overflow:hidden added, as per bug3753. 33
Thu 17 of Mar, 2011 07:57 UTC Gary Cunningham-Lee Added statement about "TAG" wikiplugin. 32
Sun 06 of Mar, 2011 10:27 UTC Bernard Sfez 31
Sun 30 of Jan, 2011 06:58 UTC lindon 30
Sun 30 of Jan, 2011 05:02 UTC lindon 29
Tue 04 of Jan, 2011 14:01 UTC Bernard Sfez Tiki Wiki 6 activation for the script added 28
Tue 04 of Jan, 2011 13:59 UTC Bernard Sfez 27
Mon 01 of Nov, 2010 16:37 UTC Xavier de Pedro 26
Mon 01 of Nov, 2010 16:24 UTC Xavier de Pedro removing extra line breaks inside the carousel code, which seems to conflict with pluginSPLIT in Tiki6 in Opera, Chrome and Safari, because of the parsin order (according to lph tips on irc) 25
Sat 25 of Sep, 2010 17:23 UTC lindon 24
Sat 25 of Sep, 2010 16:46 UTC lindon 23
Sat 25 of Sep, 2010 16:45 UTC lindon added parameters and tip about different size images 22
Sat 25 of Sep, 2010 16:41 UTC lindon 21
Thu 02 of Sep, 2010 02:03 UTC Gary Cunningham-Lee Approved plugins so unbreaking JS. 20
Thu 02 of Sep, 2010 01:59 UTC Gary Cunningham-Lee trying to access the plugin approve button 19
Thu 02 of Sep, 2010 01:56 UTC Gary Cunningham-Lee tikiwiki to tiki in links. 18
Wed 01 of Sep, 2010 06:09 UTC lindon 17
Sat 31 of Jul, 2010 13:43 UTC Gary Cunningham-Lee Angle brackets (in wikitext) got replaced by question marks in an upgrade. 16
Mon 28 of Jun, 2010 18:12 UTC luciash d' being ?‍♂️ style tag shouldn't be in the HTML body 15
Fri 25 of Jun, 2010 17:25 UTC Xavier de Pedro adding forgotten html tags 14
Fri 25 of Jun, 2010 17:24 UTC Xavier de Pedro adding explicit documentation/examples for Tiki5 13
Fri 25 of Jun, 2010 17:16 UTC Xavier de Pedro updated info regarding tiki5 release 12
Mon 10 of May, 2010 09:45 UTC jacmoe 11
Thu 18 of Mar, 2010 01:03 UTC Gary Cunningham-Lee [rollback version 8] 10
Fri 19 of Mar, 2010 15:04 UTC Gary Cunningham-Lee 9
Thu 18 of Mar, 2010 01:03 UTC Gary Cunningham-Lee 8
Wed 17 of Mar, 2010 14:07 UTC Gary Cunningham-Lee Updated with Tiki 5 info. 7
Wed 17 of Mar, 2010 14:04 UTC Gary Cunningham-Lee 6
Wed 17 of Mar, 2010 13:51 UTC Gary Cunningham-Lee 5
Mon 08 of Feb, 2010 09:33 UTC Gary Cunningham-Lee Typo. 4
Mon 08 of Feb, 2010 09:25 UTC Gary Cunningham-Lee Page created. 3
Tue 01 of Sep, 2009 11:46 UTC Gary Cunningham-Lee 2
Tue 01 of Sep, 2009 11:25 UTC Gary Cunningham-Lee 1
Collapse/expand modules below