Make any image look like a folded brochure with javascript and css3 transformation.
Add the css and javascript to your page
<script src="jquery.js">
<script src="jquery-foldout.js"/>
<link rel="stylesheet" href="foldout.css">
Add an image, this must be in a wrapper (eg. div or figure element)
<figure class="foldout" data-folds="2" data-folded="true" style="width: 200px; height: 100px;">
<img src="image.jpg">
</figure>
Enable the foldout
<script type="text/javascript">
$(function(){
$('.foldout').foldout();
});
</script>
Run mvn compile in the root.