Skip to content

btrinh/flexi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flexi - A fluid slider carousel with jQuery

Example Usage

To use Flexi, you will need to include the jQuery library and the Flexi source file on your page:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script src="/path/to/jquery.flexi.js"></script>

The following is the expected HTML structure:

<parent> <----------------------| Parent Element
  <child> <--- Child Element ---|
  <child>
  <child>
</parent>

An example of this could be:

<div id="mycarousel">
  <img src="/path/to/image" />
  <img src="/path/to/image" />
  <img src="/path/to/image" />
  <img src="/path/to/image" />
</div>

After the required HTML markup has been setup, you must also setup Flexi. Example of a default Flexi setup:

<script type="text/javascript">
  $(function(){
    $('#mycarousel').flexi();
  });
</script>

Flexi does not require any CSS to work. You may include your own CSS styles to customize the Flexi carousel.

The following is the CSS used in the demo:

.flexi-wrapper {
  padding: 10px;
  background: #EEEEEE;
  border-radius: 5px;
  box-shadow: 0 0 7px #A0A0A0;
}

About

A Fluid Slide Carousel

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published