PDA

View Full Version : How is this done?



mikes02
October 18th, 2008, 03:07 PM
http://themeforest.scheetzdesigns.com/business/bluegreen/

The image section in the middle with the arrows that scroll side to side, how is that accomplished? is the jQuery?

Anyone know of a tutorial? I had a hard time finding anything on it but maybe I am looking for the wrong thing.

Thanks!

simplistik
October 18th, 2008, 06:35 PM
according to the source ...


<script type="text/javascript" src="scripts/jquery.flow.1.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){

$("#myController").jFlow({
slides: "#mySlides",
controller: ".jFlowControl", // must be class, use . sign
slideWrapper : "#jFlowSlide", // must be id, use # sign
selectedWrapper: "jFlowSelected", // just pure text, no sign
width: "980px",
height: "377px",
duration: 500,
prev: ".jFlowPrev", // must be class, use . sign
next: ".jFlowNext" // must be class, use . sign
});

});
</script>


so ummm a quick search for jflow resulted in this:
http://www.gimiti.com/kltan/wordpress/?p=46

mikes02
October 18th, 2008, 06:55 PM
thanks!