Please help, I'm not very good in javascript I need to make a vertical slideshow of pictures, automatic (no up and down buttons), just running pictures. :?: It has to be in the left sidebar area. Any suggestions will be appreciated. Site url: http://bachuk.com/fezayarns/
Thank you. I googled it, but didn't find anything. Anyway, thank you. I found what I was looking for... http://www.webdesignbooth.com/create-a-vertical-scrolling-news-ticker-with-jquery-and-jcarousel-lite/
Thank you Rob. But I need it to work without any buttons. I want autoscroll, now it is working from bottom to top, and I need to change the direction. I read documentation, googled it - no luck.
well you didnt read very far... all you need to add is
auto:500
to make it auto scroll every 500ms
If you read Step 4 in the tut you linked it tells you that... he even says
"The script itself is pretty straight forward. The “auto:500? means it will auto-scroll every 500ms. There are a lot of options which you can configure easily. Refer the documentation for more information."
I know it, now it works well without buttons, using autoscroll. But all I need to change is direction, I need it to scroll from top to bottom, that's it. I can't find it anywhere.
I need to make a vertical slideshow of pictures, automatic (no up and down buttons), just running pictures. :?: It has to be in the left sidebar area. Any suggestions will be appreciated. Site url: http://bachuk.com/fezayarns/
http://www.webdesignbooth.com/create-a- ... usel-lite/
http://www.queness.com/post/443/jquery- ... n-tutorial
http://www.catswhocode.com/blog/top-10- ... nd-sliders
and if you don't want to code something...
http://malsup.com/jquery/cycle/
that should get you going :D
Anyway, thank you. I found what I was looking for... http://www.webdesignbooth.com/create-a-vertical-scrolling-news-ticker-with-jquery-and-jcarousel-lite/
Good luck!
$(".vertical .jCarouselLite").jCarouselLite({
btnNext: ".vertical .next",
btnPrev: ".vertical .prev",
vertical: true
});
...
auto:500
to make it auto scroll every 500ms
If you read Step 4 in the tut you linked it tells you that... he even says
"The script itself is pretty straight forward. The “auto:500? means it will auto-scroll every 500ms. There are a lot of options which you can configure easily. Refer the documentation for more information."
...