J2.5

Difference between revisions of "Creating Mootools accordion or simple slider/toggler"

From Joomla! Documentation

(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{version/tutor|1.6,1.7,2.5|platform=11.1|target=from}}
+
{{version/tutor|2.5|platform=11.1|target=from}}
 
{{review}}
 
{{review}}
 
Simple example to create a simple accordion. Can also be used to make a simple slide-toggler (just use 1 link).
 
Simple example to create a simple accordion. Can also be used to make a simple slide-toggler (just use 1 link).
Line 23: Line 23:
 
</source>
 
</source>
  
[[Category:Development‏‎]] [[Category:mootools]] [[Category:javascript]]
+
[[Category:Development‏‎]] [[Category:mootools]]
 +
[[Category:JavaScript]]

Revision as of 17:27, 27 May 2013

The "J2.5" namespace is a namespace scheduled to be archived. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Copyedit.png
This Page Needs Your Help

This page is tagged because it NEEDS REVIEW. You can help the Joomla! Documentation Wiki by contributing to it.
More pages that need help similar to this one are here. NOTE-If you feel the need is satistified, please remove this notice.


Simple example to create a simple accordion. Can also be used to make a simple slide-toggler (just use 1 link). In this example all the accordions (slider) are closed by default.

The php code (e.g. inside template):

//Add Slide/toggle behavior
JHTML::_('behavior.framework',true);
$this->document->addScriptDeclaration('
		window.addEvent("domready", function( ){
		navAcc = new Accordion( $$( ".accordion .accT" ), $$( ".accordion .accE" ), {display: -1, alwaysHide: true}  );
});

Your html should look like this:

<div class="accordion">
	<a class="accT">Link 1</a>
	<div class="accE">Container 1</div>
	<a class="accT">Link 1</a>
	<div class="accE">Container 2</div>
	<a class="accT">Link 1</a>
	<div class="accE">Container 3</div>
</div>