jQuery caroufredsel with different image width

angush

New Member
I'm trying to use the caroufredsel plugin for jQuery, like this:http://caroufredsel.frebsite.nl/examples/continuously-scrolling.phpit works great so far, but it slows down / speeds up on different image widths. The HTML Code looks like this:\[code\]<ul> <li><a href="http://stackoverflow.com/questions/12734130/#"><img src="http://stackoverflow.com/img/img.png" width="100px" alt="" /></a></li> <li><a href="http://stackoverflow.com/questions/12734130/#"><img src="http://stackoverflow.com/img/img.png" width="20px" alt="" /></a></li> <li><a href="http://stackoverflow.com/questions/12734130/#"><img src="http://stackoverflow.com/img/img.png" width="200px" alt="" /></a></li> <li><a href="http://stackoverflow.com/questions/12734130/#"><img src="http://stackoverflow.com/img/img.png" width="150px" alt="" /></a></li></ul>\[/code\]And here's the JavaScript code:\[code\]$(".ul").carouFredSel({ align: "left", items: 8, auto: { items : 1, duration : 7000, easing : "linear", timeoutDuration : 0, pauseOnHover : "immediate" }});\[/code\]What should I do to have the same speed on the rotator?Thanks!
 
Back
Top