View on GitHub

jQuery.WallFlip

jQuery plugin to create a wall of images that flip on click to show some description about the image.

Download this project as a .zip file Download this project as a tar.gz file

jQuery WallFlip Plugin v0.2

facetracking

Include the dependencies

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script>

Include the library

<link rel="stylesheet" type="text/css" href="wallflip.default.css" />
<script src="jquery.flip.min.js"></script>
<script src="jquery.wallflip.js"></script>

jQuery.WallFlip

<div id="wallflip1"></div>

<script>
    $(function () {
        $("#wallflip1").wallflip({
            oneAtTime: true,
            items: [
                {
                    image: "img/items/img1.png",
                    description: "Check this site.",
                    link: "http://site1.com",
                    link_name: "Site1"
                },
                {
                    image: "img/items/img2.png",
                    description: "Check this site.",
                    link: "http://site2.com",
                    link_name: "Site2"
                },
                {
                    image: "img/items/img3.png"
                }
            ]
        });
    });
</script>

Options

More Information