Miscellanous
Carousel
- Description
-
To make carousel work uCarausel.js file is used
Add the following code to your html page and in the "src" image attribute define path to the image files.
To add more images to the carousel duplicate the following code: <li><img src="YourImage.jpg" alt=""></li>, don't forget to define path to images in the "src" attribute.
<div class="pro_car-wrapper"> <div class="pro_carousel"> <ul> <li><img src="YourImage.jpg" alt=""></li> <!-- Your Image --> ... </ul> </div> <a href="#" class="pro_btn pro_prev" data-type="prevPage"><span></span></a><!--Previous Page Button--> <a href="#" class="pro_btn pro_next" data-type="nextPage"><span></span></a><!--Next Page Button--> </div>
Accordion
- Description
-
To make accordion work jquery-ui-1.8.17.custom.min.js file is issued
To add according to the page use the following code:
<dl id="pro_accordion"> <dt> <a href="#"><span></span> Heading </a> </dt> <dd> Content </dd> .... </dl>
SlideDown
- Description
-
Here you will simply need to add pro_slide-down-box class to any dl-list (<dl class="pro_slide-down-box">).
<dl class="pro_slide-down-box"> <dt> Heading </dt> <dd> Content </dd> </dl>
Add pro_slide-down-box and absol classes to any dl-list (<dl class="pro_slide-down-box absol">).
<dl class="pro_slide-down-box absol"> <dt> Heading </dt> <dd> Content </dd> </dl>
Tabs
- Description
-
To make the tabs work jquery.tools.min.js file is used
Using the following code you can create a tabs with the menu in the top left corner:
<div class="pro_tabs-horz-top"> <ul class="pro_tabs-nav"> <li><a href="#">Tab 1</a></li> <li><a href="#">Tab 2</a></li> <li><a href="#">Tab 3</a></li> </ul> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> </div>
Using the following code you can create a tabs with the menu in the top right corner:
<div class="pro_tabs-horz-top2"> <ul class="pro_tabs-nav"> <li><a href="#">Tab 1</a></li> <li><a href="#">Tab 2</a></li> <li><a href="#">Tab 3</a></li> </ul> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> </div>
- Description
-
To make the tabs work jquery.tools.min.js file is used
Using the following code you can create a tabs with the menu in the bottom left corner:
<div class="pro_tabs-horz-bottom"> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> <ul class="pro_tabs-nav"> <li><a href="#">Tab 1</a></li> <li><a href="#">Tab 2</a></li> <li><a href="#">Tab 3</a></li> </ul> </div>
Using the following code you can create a tabs with the menu in the bottom right corner:
<div class="pro_tabs-horz-bottom2"> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> <ul class="pro_tabs-nav"> <li><a href="#">Tab 1</a></li> <li><a href="#">Tab 2</a></li> <li><a href="#">Tab 3</a></li> </ul> </div>
- Description
-
To make the tabs work jquery.tools.min.js file is used
Using the following code you can create a tabs with the left menu:
<div class="pro_tabs-vert-left"> <ul class="pro_tabs-nav"> <li><a href="#">Tab 1</a></li> <li><a href="#">Tab 2</a></li> <li><a href="#">Tab 3</a></li> </ul> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> </div>
Using the following code you can create a tabs with the right menu:
<div class="pro_tabs-vert-right"> <ul class="pro_tabs-nav"> <li><a href="#">Tab 1</a></li> <li><a href="#">Tab 2</a></li> <li><a href="#">Tab 3</a></li> </ul> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> <div class="pro_tab-content"> Tab content </div> </div>
Tooltips
class="normaltip" title="Text"
Fixed Tooltipclass="fixedtip" title="Text"
On Click Tooltipclass="clicktip" title="Text"
Testimonials
“Lorem ipsum dolor amet consectetu adipiscing elit. Praesent vestibulum molestie lacus....”
President and CEO, R&D Services
“Cras ultricies, quam ac lobortis porta, ante sapien mollis dui. Etiam vel enim lorem. Etiam vel enim lorem. Nunc lorem sapien. Etiam vel enim lorem. Cras ultricies, quam ac lobortis porta, ante sapien mollis dui. ....”
President and CEO, R&D Services
“Etiam vel enim lorem. Nunc lorem sapien, ultrices at faucibus at, varius a est. Cras ultricies, quam ac lobortis porta, ante sapien mollis dui...”
President and CEO, R&D Services
Dialog windows
This is an animated dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.
<button id="pro_opener" class="pro_exampletip">Open Dialog</button>
<div id="pro_dialog" title="Heading"> Content of Dialog </div>
$.fx.speeds._default = 1000; $(function() { $( "#NEWdialog" ).dialog({ autoOpen: false, show: "fade", hide: "fade" }); $( "#NEWopener" ).click(function() { $( "#NEWdialog" ).dialog( "open" ); return false; }); });
This is an animated dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.
<button id="pro_opener2" class="pro_exampletip">Open Dialog</button>
<div id="pro_dialog2" title="Heading"> Content of Dialog </div>
$.fx.speeds._default = 1000; $(function() { $( "#NEWdialog2" ).dialog({ autoOpen: false, show: "fade", hide: "fade", modal:true }); $( "#NEWopener2" ).click(function() { $( "#NEWdialog2" ).dialog( "open" ); return false; }); });
- Description
-
To make Testimonials SlideShow work jquery.cycle.all.min.js file is used
The Testimonials SlideShow HTML structure:
<div id="pro_testimonials"> <div> Slide Box Content </div> <div> Slide Box Content </div> .... </div> <div class="pro_testim_buttons"> <a href="#" id="pro_prev_testim"><span></span></a> <a href="#" id="pro_next_testim"><span></span></a> </div>
Into the <div>Slide Box Content</div> you can add any content either text or images. The amount of such content divs is unlimited.
In the <div class="pro_testim_buttons"> block you can see buttons that are used to navigate slides.