I am looking for a JQuery solution to something like the rotating banner located at http://www.bazaarvoice.com.
One where it has a timed scroll but also allows the user to toggle by rolling over tabs. Anyone know of a good, easy to style one?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the Cycle Lite plugin for jQuery.
It’s got a vert small footprint and all the features you need:
See more advanced demos right here.
Edit: here’s a sample code for you:
You’ll need the Cycle plugin, not the Cycle Lite plugin.
HTML:
CSS:
Javascript:
Enjoy, it’s untested, but should work.
Edit2:
Replace the pagerAnchorBuilder option with
return '<li class="thumb" id="thumb-1"><img src="' + slide.src + '" /></a></li>';I guess you want to change the width and/or the height. Juste remove the HTML height, and use a CSS property :
.thumb img { height: 10px; width: 10px; }You can also add some custom CSS properties.