|
Project Information
Members
Featured
Downloads
Links
|
Project Descriptionjixedbar is a jQuery plugin that lets you fix a horizontal bar at the bottom of your website or web application. This project is inspired by Facebook’s fixed application/menu bar. Latest/Branch (Development) Release
Trunk/Download Release
DemoFor the latest demo and documentation, please visit jixedbar's official website. How-to1. Get the latest copy of jixedbar, you can get it in two(2) ways:
svn checkout http://jixedbar.googlecode.com/svn/trunk/ jixedbar 2. Extract or copy the source on your web root then include this simple codes inside your HTML Head: <link type="text/css" href="/path/to/themes/default/jx.stylesheet.css" rel="stylesheet"/>
<script type="text/javascript" src="/path/to/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="/path/to/src/jquery.jixedbar.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#sample-bar").jixedbar();
});
</script>Notes:
Sample bar/menu items: <div id="sample-bar">
<ul>
<li title="Home"><a href="http://your.domain.tld/"><img src="img/home.png" alt="" /></a></li>
</ul>
<span class="jx-separator-left"></span>
<ul>
<li title="Around The Web"><a href="#"><img src="img/web.png" alt="Get Social" /></a>
<ul>
<li><a href="http://www.facebook.com/account-name"><img src="img/facebook.png" title="Facebook" />Facebook</a></li>
<li><a href="http://twitter.com/account-name"><img src="img/twitter.png" title="Twitter" />Twitter</a></li>
<li><a href="http://www.flickr.com/photos/account-name/"><img src="img/flickr.png" title="Flickr" />Flickr</a></li>
</ul>
</li>
</ul>
<span class="jx-separator-left"></span>
<div>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div>
<ul class="jx-bar-button-right">
<li title="Feeds"><a href="#"><img src="img/feed.png" alt="" /></a>
<ul>
<li><a href="http://your.domain.tld/feed/"><img src="img/feed.png" title="Content Feed" />Content Feed</a></li>
<li><a href="http://your.domain.tld/comments/"><img src="img/comment.png" title="Comment Feed" />Comment Feed</a></li>
</ul>
</li>
</ul>
<span class="jx-separator-right"></span>
</div>Behaviors You can pass parameters on jixedbar to change how it look and/or behaves.
Example: $("#sample-bar").jixedbar({
showOnTop: true,
transparent: true,
opacity: 0.5,
slideSpeed: "slow",
roundedCorners: false,
roundedButtons: false,
menuFadeSpeed: "slow",
tooltipFadeSpeed: "fast",
tooltipFadeOpacity: 0.5
});Themes/Styles You can customize the bar's look/style by modifiying the bundled theme. Choose the theme that you want to modify (under "themes" directory) and edit the "jx.bar.css" stylesheet file. Also you can create your own by copying from one of the existing theme (for reference) and save it under "themes" directory with a different theme name. CSS class reference:
You can also change/replace the icons, if you wish to. Bug Reporthttp://code.google.com/p/jixedbar/issues/list Licensejixedbar is available for use in all personal or commercial projects under both MIT and GPL licenses. DonationPlease support this project by donating any amount through PayPal or by simply linking back to this page. (http://code.google.com/p/jixedbar/) ChangelogVersion 0.0.4 (August 16, 2010)
Version 0.0.3 (July 17, 2010)
Version 0.0.2 (December 18, 2009)
Version 0.0.1 (December 15, 2009)
|
