Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin

May 16th, 09 by Dicky | View Comments |
You maybe interested in our latest article Personal Facebook Fan Pages of Celebrities.

There are a lot of free scripts to create a content slider. One of the example is SmoothGallery by JonDesign. But, if you are using jQuery and don’t want to install another JavaScript library, then you may need to consider jQuery slider plugin.

Today, i am going to provide a tutorial on using jFlow, a minimalist jQuery plugin to create a content slider. Readers are required to have basic XHTML/CSS and JavaScript skills. I will provide a download link after this tutorial. This is the first tutorial post on WebDesignBooth, and i will write more tutorials in future.

content-slider

So, let’s start to create our content-slider now. Download both jQuery and jFlow before you proceed.

  1. Create a style.css file, and insert the following code into the file:
    #jFlowSlide{ background:#DBF3FD; font-family: Georgia; }
    #myController { font-family: Georgia; padding:2px 0;  width:610px; background:#3AB7FF; }
    #myController span.jFlowSelected { background:#43A0D5;margin-right:0px; }
    
    .slide-wrapper { padding: 5px; }
    .slide-thumbnail { width:300px; float:left; }
    .slide-thumbnail img {max-width:300px; }
    .slide-details { width:290px; float:right; margin-left:10px;}
    .slide-details h2 { font-size:1.5em; font-style: italic; font-weight:normal; line-height: 1; margin:0; }
    .slide-details .description { margin-top:10px; }
    
    .jFlowControl, .jFlowPrev, .jFlowNext { color:#FFF; cursor:pointer; padding-left:5px; padding-right:5px; padding-top:2px; padding-bottom:2px; }
    .jFlowControl:hover, .jFlowPrev:hover, .jFlowNext:hover { background: #43A0D5; }
  2. 
  3. Open your main document and include the style.css, jQuery, and jFlow in the <head> tag.
    <link rel="stylesheet" href="style.css" type="text/css" media="screen" />
    <script language="javascript" type="text/javascript" src="jquery-1.3.2.min.js"></script>
    <script language="javascript" type="text/javascript" src="jquery.flow.1.2.js"></script>
  4. Then add this simple JavaScript code to define the settings for jFlow
    <script type="text/javascript">
    $(document).ready(function(){
        $("#myController").jFlow({
            slides: "#slides",  // the div where all your sliding divs are nested in
            controller: ".jFlowControl", // must be class, use . sign
            slideWrapper : "#jFlowSlide", // must be id, use # sign
            selectedWrapper: "jFlowSelected",  // just pure text, no sign
            width: "610px",  // this is the width for the content-slider
            height: "235px",  // this is the height for the content-slider
            duration: 400,  // time in miliseconds to transition one slide
            prev: ".jFlowPrev", // must be class, use . sign
            next: ".jFlowNext" // must be class, use . sign
        });
    });
    </script>

    Think #slides as a container, which contain all slides, while .jFlowControl is the controller which let us go to the individual slide. As you can see from the style.css, we have 300px .slide-thumbnail to display our image, 290px .slide-details to display our title and description. Besides these, we have 10px margin-left for the .slide-description and 5px padding for the .slide-wrapper. So totally we need 610px width. For the “height” setting, you need to estimate the maximum height for your content. Here, i will use 235px as an example.

  5. Now is the turn to create the individual slide. The slide is contained in the #slides div. Here, i will conly show one slide. You may refer the source code for more info.
    <div class="slide-wrapper">
        <div class="slide-thumbnail">
            <!-- image here -->
        </div>
        <div class="slide-details">
            <h2><!-- title here --></h2>
            <div class="description">
                <!-- description here. -->
            </div>
        </div>
        <div class="clear"></div>
    </div>

    We will wrap everything in a .slide-wrapper class, and float our thumbnail to the left while our content to the right. Don’t forget to clear the floats also. Replace image, title, and description with your own content.

  6. After that, we may add controls to the slides, which are resides in a #myController div.
    <span class="jFlowPrev">Prev</span>
    <span class="jFlowControl">1</span>
    <span class="jFlowNext">Next</span>

    The .jFlowPrev and .jFlowNext are necessary controls to go to previous and next slides, while .jFlowControl is a “button” to jump to any particular slide. The number of .jFlowControl span is depends on the number of slides you have.

  7. That’s all!! We had done everything. You can view the demo or download the source code to use in your own project.

Update:
You may download the auto scroll version here.

We regularly update articles about resources, tutorials and Wordpress to help designers and developers. If you are new to WebDesignBooth, why not subscribe to our RSS feed and get the latest updates immediately. You can also subscribe through email or follow us on Twitter.
  • http://design-newz.com/2009/05/17/step-by-step-to-create-content-slider-using-jflow-a-minimalist-jquery-plugin/ Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin | Design Newz

    [...] Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin [...]

  • http://cssbrigit.com/CNews/entrada/2009051806010471 CSS Brigit | Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin

    Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin…

    This is a step-by-step tutorial on how to create your own content-slider using jQuery and its minimalist plugin, jFlow.

  • http://www.tripwiremagazine.com/user-news//user-linktep-by-step-to-create-content-slider-using-jflow-a-minimalist-jquery-plugin.html tripwire magazine | tripwire magazine

    [...] Links submitted by tripwire magazine users tep By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin [...]

  • http://www.websitedesign1.com Website Design

    The best thing about your website blog is that your tips are working!
    very very useful! Thank u!

  • http://www.websitedesign1.com Website Design

    That was simply the best post . I will keep visiting your blog so keep them coming

    :)

  • http://weblogs.asp.net/jgaylord/archive/2009/05/21/the-technology-post-for-may-21st.aspx The Technology Post for May 21st – Jason N. Gaylord’s Blog

    [...] jQuery Plugin – Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin – Web Design Booth [...]

  • http://www.webdesignbooth.com dicky

    Hi, thanks for your visit. You have a nice site too!

  • http://10steps.sg Johnson Koh

    Very useful technique. Will find a chance to use it.

  • Jason

    Any way this can scroll through automaticly, rather than having a user manually scroll through them?
    Thanks.

  • http://www.webdesignbooth.com dicky

    Hi Jason,
    The jFlow plugin doesn’t support auto-scrolling, but i have a modified version that support auto-scrolling. Contact me if you want the auto-scrolling version.

    Thanks.

  • lionel valero

    Hello,

    I am interested by the auto scoll version as well.

    Regards.

  • andrei g.

    Hi, i want the auto scrolling version, can you email=it to me?

  • http://www.webdesignbooth.com dicky

    I had sent to both of you. Check your email.

    Thanks.

  • lionel valero

    Hello,

    I integrated jflow and that one :
    http://www.filamentgroup.com/lab/jquery_ipod_style_drilldown_menu/

    on the same page, quite surprisingly, when jflow slides it resets the drilldown menu to inintial state.

    Here is an example :
    http://www.polymtl.ca/gch/Outils/concept-green/index_fg.html

    Best regards,
    Lionel.

  • http://www.alexcrooks.co.uk Alex

    Could you send me the auto scrolling version too please!

  • http://www.alexcrooks.co.uk Alex

    Quick note to those using the auto scroller, don’t delete the next and back buttons it needs them! Just display:none instead

  • http://www.webdesignbooth.com dicky

    Hi Alex,
    Thanks for pointing this out. I never remove the prev and next buttons, so i am not aware of this problem.

  • http://www.alexcrooks.co.uk Alex

    Is there any way to “pause” the timer on mouse over #slides and continue on mouseout?

  • http://www.nivas.hr markupmark

    Hey, great work but any chance i can get the modded script also? thx

  • http://www.webdesignbooth.com dicky

    I think the jFlow developer don’t include pause feature. If you want more advance features such as the “pause”, you may go to this plugin: jCarousel Lite, i think in the future i will write 1 tutorial which related to it. Anyway, thanks for you visit and valuable comments, really appreciate it!

  • http://www.webdesignbooth.com dicky

    Hi, i had sent you the file. check your mail and feedback here if you found any problem.

  • Neil

    Hello – v. good site.
    I would really like to try the auto scrolling version of this too!
    Many thanks

  • http://www.bjorn-erik.biz Bjorn

    Great job with this. Can you please send me the auto scroll version.
    Thanks.

  • Ryan

    may i get the auto scrolling version as well? thanks!

  • http://www.happalong.com Nicky

    Hey , This is great!!

    could you please send me the autoscroller one as well?

    I’d really appreciate it!

    Thank you

  • Barton

    Hi,
    could I please request the AutoScroll code version.
    Great tutorial, thanks,
    Barton.

  • http://betterproductions.com BrandonSetter

    Hi,
    Could I please request the AutoScroll code version. And is there a way to make it slide left to right instead of right to left?

  • http://betterproductions.com BrandonSetter

    I need that auto scroller too ASAP! And is there any way to make it scroll left to right?

  • melvin

    this is really helpful, thank you!
    oh could you send me the auto scrolling version!

  • http://www.bitrepository.com/content-sliders.html 7 Excellent JavaScript Content Sliders

    [...] Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin – a tutorial from WebDesignBooth that explains you how to create a simple content slider using the powerful library JQuery. [...]

  • Ami

    would love the autoscrolling version! thank you!

  • http://www.marcfalk.com Marc Falk

    Hi, thanks for the tutorial, it is nice. I love light-weight, and jflow surely is.

    I would very much like a version of the autoscroller too, so I would be very happy if you could send me a copy too. Thanks :)

    Cheers,
    Marc

  • http://seomoneyman.com/?p=665 15 jQuery Plugins For A Better Photo Gallery And Slideshow

    [...] Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin [...]

  • http://www.webdesignbooth.com dicky

    Hi,
    I had sent the jFlow auto scroll version to you. Thanks for your visit and support.

  • Hiroshi

    Fantastic tutorial. Please keep these cool tricks coming.

    I’d love to get a copy of the auto scroll version. Please email it to me when you have a minute.

    Cheers.

  • http://www.mistix.net mahir

    i need auto scrolling jflow can you send me

  • http://www.webdesignbooth.com dicky

    Hi Hiroshi and mahir,
    I had sent the auto scroll version to your inbox. Enjoy it! :)

  • Hiroshi

    Works great :)

    Thanks so much for the speedy reply.

    I think you really have something here, so keep up the great work.

    Cheers!

  • Gil

    Hi, very nice tutorial, great script, and awesome and useful website you have here!

    I really like the effect of this script, but the autoscroller version could be handy! Could you please send to me too?

    Thanks a lot!

  • http://www.webdesignbooth.com Dicky

    Hi,
    I had sent the auto scroll version to you. Thanks!

  • http://19eighty.com creativecreature

    This is exactly what I needed, Thank you! I was hoping to get a copy of the auto scrolling version as well, seeing I need that for a site I am currently working on.

    Thanks again and great work!

  • Mr Pappas

    Thank YOU for the tutorial. This was exactly what I needed and explained for those of us who know a bit of code but are not programmers.

    Could I also please get the modded auto-scrolling text? I think on AJAX I might be able to figure it out but JQUERY is new to me. Thanks!!

  • http://www.elitecs.se Oscar

    I need the auto scroller to, could you put up a link so everyone could use it?

  • Mr Pappas

    Smashing! Thanks for helping everyone out :)

  • http://www.qianduan.net/15-jquery-content-sliders.html 15个最佳jQuery幻灯插件和实例| Ajax| 前端观察

    [...] 官方网站 | 演示 [...]

  • http://www.blellow.com/zakmorris zak

    Love this slider script! I have one issue and it’s kill’n me.

    I’ve modified this a bit so that it’s only sliding through thumbnails and displays 3. For some reason it works great in FF / Safari, but IE will display the first slide then clicking on any other slide will cause all slides to fly by and display nothing. :/

    regarding the CSS I have tried all kinds of things and it’s not much different at all than the source really aside from thumbnail width.

    Any ideas ?

  • http://www.maartenschraven.com Maarten

    Hi Jason
    can i have the modified file please i was working with it and hoped it has auto scrolling

    thanks in advance

  • http://www.maartenschraven.com Maarten

    great tutorial, i’m now modified the code for working with wordpress

  • http://baybedava.wordpress.com/2009/08/13/ucretsiz-jquery-slider-icin-en-iyi-15-ornek/ Ücretsiz Jquery Slider İçin En İyi 15 Örnek « Bay Bedava – Netten Başlıklar

    [...] Resmi Website | Test [...]

  • http://www.webdesignbooth.com Dicky

    Hi, for those who request for auto scroll version, please download from the bottom of the article. I had updated this article to include the link to the auto scroll version.

    Thanks!

  • Cy

    Thanks!

    The html works perfect, but when I try to use the code in WordPress it doesn’t work.

    Any ideas?

  • http://inkpattern.com Fred K

    Hi Dicky. Great howto, it’s super easy to implement, and the auto-function is a great addition. Just one question: I’m trying to modify the layout of the slider to have the controller floated left and the slides parent floated right, side by side as it were. CSS-wise that’s no problem but the slides stop working properly when I do this — only the last slide is visible. Seems there’s something in the script construction that makes it impossible to have the controller anywhere else except above or below the slides? Is this correct, and if so, can you maybe suggest how to make a two-col layout work? That would be much appreciated. Thanks!

  • Cy

    Seems to be great. I downloaded the files and the html is looking awesome, however I tried to implement the code in WP 2.8 and is not working. Do you know of any incompatibility or any reason why is not working?

    Thanks!

  • http://www.webdesignbooth.com Dicky

    I think maybe this is due to the WP2.8′s jquery version. I haven’t try it on 2.8 so i can’t comment much. But it works well with 2.7 :)

  • http://alt-creative.net/2009/08/12-easy-to-implement-jquery-effects-for-your-website/ 12 Easy-to-Implement jQuery effects for your Website « Web Design / Development Blog :: Alt Creative
  • http://www.maartenschraven.com Maarten

    I have it work with 2.8 look at http://beta.maartenschraven.com it is still beta and works only on mac but it is working perfect.

    If you want i can give the code here. The problem is the order of the tags and look if wordpress dubble load jquery.
    WP2.8 has its own jQuery load. If i can help let me know

  • http://blogfreakz.com/jquery/the-best-tutorials-combining-htmlcssphp-and-jquery/ The best tutorials combining HTML,CSS,PHP and JQuery | blogfreakz.com

    [...] News Ticker is a fantastic way to present headlines or minor updates to your readers. The smooth scrolling effect will attract your readers and generate more clicks to your site. I am writing this tutorial as there are readers ask about this after they read my tutorial about content slider. [...]

  • http://webdesignledger.com/tutorials/13-super-useful-jquery-content-slider-scripts-and-tutorials 13 Super Useful jQuery Content Slider Scripts and Tutorials | Web Design Ledger

    [...] Step By Step To Create Content Slider using jFlow [...]

  • http://www.lamiani.eu/blog/2009/08/24/slider-scripts-tutorials-jquery/ Slider Scripts & Tutorials – jQuery | Lamiani Project

    [...] Step By Step To Create Content Slider using jFlow [...]

  • http://huibit05.com/tutorials/java-script/13-super-useful-jquery-content-slider-scripts-and-tutorials/ 13 Super Useful jQuery Content Slider Scripts and Tutorials | huibit05.com

    [...] Step By Step To Create Content Slider using jFlow [...]

  • http://www.e-dunyam.com/ucretsiz-en-iyi-15-jquery-slider-manset-haber.html Ücretsiz en iyi 15 jquery slider manşet haber | e-dunyam.com

    [...] resmi website | test [...]

  • http://none nelson

    May I please have the auto scrolling version as well? I really appreciated it.

  • Dave

    Is there any change we could see the auto-slide version.
    Is it availble for download anyway?
    Really woulld like to see/use it.

    Thanks,
    Dave

  • http://www.webdesignbooth.com Dicky

    Hi Dave,
    I had updated the article to include the auto version.

    Thanks.

  • Dave

    Ok, thank you very much!
    That was an easy one for me… :)
    I didn’t noticed there was an updated version of it.
    I’ve downloaded the script and definitely give it a try. Allthough i found this morning an other slider wich is easier to position certain elements. But yours is running a bit smoother… i have a dilemma right now :S

    Thanks Dicky.

  • http://www.alwebdesign.ro Liviu

    Hi man, very very well explain, is there any chance that I can get the auto scrooling version? I read above that you send to some people!

    Many Thanx!!

  • http://www.webdesignbooth.com Dicky

    Hi Liviu, I had updated the article to include the auto scroll version.

  • http://comingsoon Zeki

    Hi,

    Many thanks for this lovely tutor.

    Is there documentation or how-to to place two or more jflow on one page?

    Thanks alot
    Zeki

  • John

    How/where do you specify the amount of time a slide stays in place before it transitions to the next slide?

  • John

    FYI I’m using the auto scrolling js file. TIA!

  • http://www.webdesignbooth.com Dicky

    Hi John,
    Yes, you can modify the amount of waiting time. It is at line 149 of jquery.flow.1.2.auto.js. The default value is 3000(ms).

    Hope you enjoy using the script. :)

  • Bata

    Hi! Thanks for the tutorial! I have a problem: I cannot place more than 1 slider content in one page, it doesn’t work. Someone knows how to do? I need to place at least 3 sliders contents. thanks!

  • http://triggerfishcorp.com Frankie

    would love the auto-scrolling feature! can you send it over pls? thank you in advance.

  • http://www.webdesignbooth.com Dicky

    Hi Frankie,
    I had included the auto version at the bottom of the post. :)

  • http://www.themeflash.com/scripts/40-fresh-and-new-jquery-plugins-of-sliders-and-gallerys/ 40+ Fresh And New jQuery Plugins Of Slider’s And Gallery’s – Themeflash : One Stop For All Your Web Resources

    [...] Create Content Slider using jFlow There are a lot of free scripts to create a content slider. One of the example is SmoothGallery by JonDesign. But, if you are using jQuery and don’t want to install another JavaScript library, then you may need to consider jQuery slider plugin. [...]

  • http://www.downrex.com/tutorials/photoshop/13-super-useful-jquery-content-slider-scripts-and-tutorials/ 13 Super Useful jQuery Content Slider Scripts and Tutorials | Downrex

    [...] Step By Step To Create Content Slider using jFlow [...]

  • http://www.webcssdesign.com/ajax/13-tutoriels-de-slider-jquery/ 13 tutoriels de slider jQuery | WebCssDesign

    [...] Content Slider jFlow [...]

  • Thomas

    Hi,

    is there a way to place a direct link i.e. to slide 3 of the container?

    Thanks
    Regards
    Thomas

  • Steve

    Thanks for producing this fabulous script… great script to add to my arsenal!

    Everything installed smoothly, took about 5 mins. My only dilemma is when I scroll my web-page down to your sliding script it twitches my page backround.

    Also… when it twitches, I can vaguely see a silhouette of the sliding panel either on the left or right side of the page depending on the side it’s sliding content to.

    My site is a “centered” design @ 780px wide.

    Any thoughts as to why this is happening?

    Thanks

    Steve

  • http://www.webdesignbooth.com Dicky

    Hi Steve,
    Can’t really get what you mean? Do you have any screenshot for this issue?

  • http://technosiastic.wordpress.com/2009/09/24/collection-of-top-jquery-tutorials-tips-tricks-techniques-to-improve-performance/ Ultimate collection of top jQuery tutorials, tips-tricks and techniques to improve performance « Technosiastic!

    [...] Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin [...]

  • http://technosiastic.wordpress.com Shahriar Hyder

    Nice one mate. I have also added the link to your post in my Ultimate

    collection of top jQuery tutorials, tips-tricks and techniques to improve

    performance. Have a check below:

    http://technosiastic.wordpress.com/2009/09/24/collection-of-top-jquery-

    tutorials-tips-tricks-techniques-to-improve-performance/

  • http://www.52webwind.cn/?p=90 网页色妓个人网站-网页前端-网页设计 » 15个常用jQuery滑动插件和教程

    [...] 官方网站 | 演示 [...]

  • Edwin

    Nice tuts. I wonder if it works if I put in some divs and images inside of each slide div. Kind of like putting a whole bunch of elements.

  • phil

    Thank you for the great resource. I have built a version of this and it works great, except for the fact that the auto scroll isn’t working. I downloaded the auto scroll version of the jslide file but it isn’t auto scrolling. Is there something I need to do to make this work.

    Also, I don’t need the resizing thumbnail feature for the images, is there any code I can trim since I’m not using this.

    Here is a link to it if that’s helpful
    http://www.jalc.edu/contentslider/content_slider_test.htm

  • Chris

    Please can anyone send me the auto scroll version…

    thank’u very mutch guys

  • mgsmus

    Great tutorial! Thanks.

    and this is from me for auto version:

    //Pause/Resume at hover
    $(opts.slides).hover(
    function() {
    clearInterval(timer);
    },

    function() {
    dotimer();
    }
    );

  • http://windesignworld.com monaye

    Great!! I was looking for auto scroll of jFlow and found you’re modification version. It’s working great!! Great Work!!

  • phil

    I figured it out. Had to switch auto: false to true.

  • simmo

    Hey, is there any way 2 have two sliders within the same page?

  • http://www.nashatwork.com Avinash

    Hi,
    a good post. However I wanted to know what if I don’t want the controller and want my scroll to happen from my own specified buttons. As i have a situation where i want to build a wizard using this and enable users to scroll on clicking on buttons like continue after they fill a particular form fields. Currently I am using ur classes and keeping ur controller hidden in the html as when i remove it the slider stops to work.

    Please help.

  • http://www.eatechs.net Eric Barb

    Great tutorial. I’m setting this up on a test page, and plan to use in production soon. Very exciting as a first time jquery user :-)

    Well written and easy to follow I might add!

  • http://www.theme-junkie.com Roy

    Hi, I like this plugin and have used it in one of my WordPress themes. But have question, how can I temporarily hide the slider, so it does not “flash” on the page as plain HTML. Need your help,
    Roy

  • http://www.gallerymolina.com nycpicasso

    Great tut! I have been looking for this for some time now. Here are my questions.

    1. I made my own graphic buttons with an up and an over state and I would like to use them and not have the next & prev buttons, is this possible and how would I do it?

    or

    2. I have tried to raise the controller up on to the slider level but it falls behind the slider and you cannot see it or use it, how can I get it on top so that it can still be used? I tried to move the over the but that didn’t work.

    I don’t have it up live for you to see yet since I am redesigning my site but I can send you a screen shot of what I want it to look like.

    Thanks

    Once again, Great tutorial!!

  • http://www.gallerymolina.com nycpicasso

    I am not sure how this part didn’t go thru on my above 2nd question but this is how it should have read.

    I tried to move the div id=”myController over the div id=”slides but that didn’t work.

  • westy

    All great stuff! With the auto scroll included, this is great. Very easy to tweak with css to suite my needs.

    Where would I insert this bit of code to pause on hover?

  • westy

    Nevermind, I got it. For those doing the same, I placed it after the dotimer(); call on line 153.

  • westy

    My solution (though probably not the best) was to load the slider through an iFrame. You don’t notice the iFrame with some styling. But more importantly, I didn’t have to find the conflicts with WordPress and/or plugins.

  • westy

    My last obstacle to conquer is starting on a random tab. Any ideas on that? Sigh, would be so easy with Actionscript, but Flash is… well… Flash.

  • http://marionamedia.com Mariona

    Would you be able to help me to tweak the code to stop the auto slider into manual mode once the user clicks the numbers?

    I used the pause on hover code that was posted here and it works great but I would love to be able to achieve the same effect that this sites achieve. I have checked their code and it looks like it is from the old jQuery (1.2.6) library and would not be compatible with the 1.3.2.

    Thanks so much in advance!

  • http://www.soloaga.com.br/blog/13-tutoriais-para-fazer-slideshow-e-carrossel-com-jquery/ Outpus • Soloaga Designs » 13 tutoriais para fazer Slideshow e Carrossel com Jquery

    [...] BoxesImageSwitchjCarouselUsando o jFlow PluginTutorial para cria ótimos Slideshows com jQueryTutorial passo a passo para criar um Painel Deslizante com jFlowEspero que estes tutoriais possam ser úteis em seu projeto, caso tenha algum que gostaria que [...]

  • Poodel

    Thanks guys !! Exactly what I was looking for. No hover on auto was bugging me for quite some time – now my work got a lot, lot easier :D

  • http://www.webdesignbooth.com Dicky

    Hi Bata,
    Forgive me for the delay in replying you. Could you send me your code, so that i can help you to look into this issue?

  • http://www.webdesignbooth.com Dicky

    Hi Edwin,
    Yup, it should be able to work.

  • http://www.webdesignbooth.com Dicky

    Hi simmo,
    Should be able to have 2 sliders, but i never try before. :)

  • http://www.webdesignbooth.com Dicky

    Hi Avinash,
    I am not sure on how to do that, maybe you can share your code with us?

  • http://www.webdesignbooth.com Dicky

    Hi Roy,
    What do you mean by “hide” the slider?

  • http://www.webdesignbooth.com Dicky

    Hi westy,
    I have no idea on how to start with a random 1. But seems like jFlow doesn’t support this feature…

  • http://www.webdesignbooth.com Dicky

    Hi Mariona,
    The script should be able to work with 1.3.2. But i have no idea on how to stop the auto slider once user clicks the number…

  • divbox

    thank you for the script! it’s great! is there a way, when on auto scroll, or when user clicks the next on the last image, it goes to the first in the list, but not by going back through the slides it has already gone through. to prevent it from going backwards to get to start again.
    thanks!!
    div

  • http://www.webdesignbooth.com Dicky

    Hmm… I don’t think we can do this with jFlow. Probably you can achieve this result with other jQuery plugin. :)

  • divbox

    thanks for the pointer and fast reply!!!

    i used the cycle plugin to get desired effect. this cycles the DIV’s from start to beginning and back to start. it also has play/resume buttons which i also needed.

    i had to bypass using the “auto start” feature of the jFlow plugin and use cycle’s auto start to get the play/resume buttons to work.

  • http://WebDesignExpert.Me/2009/12/30/jquery-blend/ jQuery Blend | WebDesignExpert.Me

    [...] Step By Step to create content slider using jFlow, A Minimalist jQuery Plugin – Link. [...]

  • http://www.fahim-kawsar.net/blog/?p=17 A Fresh Start of 2010 « Floating Reverie

    [...] those eye catching effect. I have used three of them in the site (i.e, Fisheye, Overerlay and Slider). Really, brilliant in [...]

  • http://indie-preneur.com indie_preneur

    Working on a site now, and in IE the slider slides waaayyy past the content, any suggestions?

    http://www.mgiweb.net/test/lcf/default.html

  • Agata

    Hi,
    I dont know what to do to have auto scroll? I donloaded jquery.flow.1.2.auto.js and linked in the head , but it doesnt work. Can you tell me what to do?

    Thank you

  • Agata

    Hi,

    I got to work :)
    Thank you for it!

  • moshe

    yes, i am seeing this too – in IE7 – both on this website and in the downloaded files.

    is there a solution for this?

    Thanks!

  • moshe

    ok – weird question here: i know that this is called a “slider” – but how easy is it to modify this so that the slides fade out and in instead of slide ??

    Thanks again – great script!

  • http://www.jayyaskiwdesigns.ca Jay Yaskiw

    Hey Guys,

    I installed the program exactly as it said on the website and I also have copied the demo very closely.

    I keep a having a problem where there is a scroll bar on the right side and bottom of each individual slide. Its weird , is there anything I need to tweek to get it to work ?

  • http://www.webconference.it Alex

    Hello,
    Really great great script!! May I have the modded autoscroll script also? Thank u guys!!!

  • http://www.webconference.it Alex

    Ooops didn’y see you posted it already :) I only looked at the bottom of the page not the bottom of the post…sorry :)

  • André

    Don’t work in Internet Explorer. IE show the first slide but the other slides do not show.

    Someone resolves this problem?

  • Lee

    How would I go about setting a default slide? I have 3 slides and want the middle one to be the first one displayed.

    Cheers for the fantastic lightweight slider.

  • http://www.afiffattouh.com/web-design/slidedeck-%e2%80%93-cool-jquery-plugin-for-slideshow SlideDeck – Cool jQuery Plugin For Slideshow | Afif Fattouh – Web Specialist

    [...] remember our tutorial about jQuery Content Slider? SlideDeck brings all these slideshow and content slider to you in no [...]

  • http://www.jalc.edu phil

    I have this working on my site, and it is great. Thanks so much for making this available. However, I have this problem that every once in a wile, my browser shows all of the slides for several seconds before the styling kicks in. I don’t think it is the size of my pictures, because they are fairly small, and as I said, it doesn’t happen every time. Has anyone else had this problem, and is there a way to deal with it. Click on my website to see what I am talking about. It seems to happen more frequently in Firefox. Thanks again.

  • http://www.jalc.edu phil

    by the way, the website is http://www.jalc.edu

  • http://breathecast.com Lewis

    can I have the autoscroller also? can you email to me?

    THanks

  • http://www.interworklabs.com/?p=819 10 Useful jQuery Slider Tutorials – InterworkLabs

    [...] 10. Create A Content Slider using jFlow and jQuery [...]

  • GhostPool

    How? :D

    I can’t get the auto scroll to work with the jquery.flow.1.2.auto.js. I have it set to true in case anyone was wondering.

  • http://itpixels.com mark

    this is perfect for my current project! :) I have tried to mimic the autodesk.com slider effect using jquery (they’re using flash)… i have tried for several hours but failed.. this one made my headache gone and got me excited :) thanks a lot, this post made my day! a few tweaking is needed though such as adding transparency and float the navigation on top of the image.. :)

  • http://www.tipsotricks.com Zain

    Great widget!

    Since I’m a Blogger.com user .. I’ve Bloggerized
    this simple slider.

    http://www.tipsotricks.com/2010/01/addinstall-simplest-jquery-featured.html

    Hope you would like this.

  • Gabriel

    I need help with my controller.

    When I try to add background code to the controller (span) it stops to work; it seems it only accepts ?

    Working code:

    Not working code (wrapped in , why does it stop working? I tried …, didnt work either):

  • Gabriel

    Somehow couldn’t post HTML code, but please help me out here:

    http://i47.tinypic.com/k02add.jpg

  • Gil

    What’s up with your table code? Where did those tags come from?

    Maybe you should try to remove them…

  • http://ptz0n.se/ Erik Pettersson

    Is there a way to use a dynamic height for the content slider?

    It would be awsome if it acts on the heighest slide, or ajust the height to match the content for each slide.

  • kimkafs

    Hi,
    I’m using your script and it’s working perfectly. but when I want to scroll flash content, I get a messy display on FF instead of showing the main div and hiding the rest. is this a know issue or Am I forgetting s.t? Thanks

  • http://5kai.com/post/462 15个最佳jQuery幻灯插件和教程

    [...] 一个简约的jQuery插件 官方网站 | 演示 [...]

  • http://petrcibulka.freshflesh.cz ArseneLAB

    Hi, how did you do that? By previous comments it seems I’m not the only one with problems in implemantion the slider into WordPress.

    It seems the whole jQuery thing is not working so far. And yes, I followed the instructions about correct putting javascript files into WP (i.e. here: http://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/) and all my other scripts are working normally.

    So … do you have further instructions? Or anyone else? :)

  • Dominick

    This is nice except for the interference when the all-important XHTML doctype declaration tag is added to the top of the doc…. is everyone disregarding this ‘required’ bit of code in favor of the eye candy? Just curious…

  • Waseem

    Hey having problem with the slider when i embed you tube vidoes .. The video appaers on top of the slider … And when its slides the video still appers on top …..Please help me out… M using this in my website ….

  • http://www.freeflightbrighton.co.uk/Esteem/Index.html Rob Chisholm

    Very nice, I managed to get it work fine, but with light box, in the same page, it became one or the other, does/has anyone know how to add a fix to this, example on page “About Us” look at the bottom of the page and view, works fine in Safari 4.04

  • http://www.e136.com/index.php/2010/02/15gezuijiajqueryhuandengchajianhejiaocheng.html 15个最佳jQuery幻灯插件和教程 | Eric's Blog

    [...] 官方网站 | 演示 [...]

  • rob Chisholm

    link did appear before

  • http://ajaxmint.com/2010/02/a-minimalist-jquery-plugin/ A Minimalist jQuery Plugin | Ajaxmint – Endless Ajax samples on jQuery, MooTools, ExtJS, Dojo, Prototype and PHP

    [...] Demo  Tutorial  Posted in ajax | Tags: content slider, jflow, slide, slideshow « jQuery clueTip [...]

  • Chris

    I cant figure out where to place this pause/resume code. Can you help me out?

  • http://www.webdesignbooth.com Dicky

    Hi Chris,
    There is not place for you to insert the pause/resume.

  • http://www.newamsterdamconsulting.com Cindy

    I am looking for the random image to appear each time the page is refreshed as well, client has asked for it.
    Any suggestions?

  • http://www.webdesignbooth.com Dicky

    Hi Cindy,
    You need to create a php function that automatically output an image for each page refresh. Shouldn’t be a problem. :)

  • http://baybedava.wordpress.com/2010/03/15/jquery-content-sliders-gosterim-eklentileri/ jquery content sliders gösterim eklentileri « Bay Bedava – Netten Başlıklar

    [...] 13 – step by step to create content slider using jflow – demo – download – tutorial [...]

  • Dorothy

    Put it just after ‘dotimer();’ around line 153 before the }; in ‘jquery.flow.1.2.auto.js

    It will pause the scoller on hover.

  • http://burntbox.com George Marez

    Hello,

    I was looking for something similar to this but I wanted the navigation for the slider to be between the image and the content that belongs to it.

    For example
    /image/
    /nav/
    /header/
    /description/

    Is this possible? Perhaps I just need to work out my css to have the nav positioned absolutely above the slides?

    Can I get some advice on this?

    Thanks!
    George

  • Kyle Tolley

    Hi Dick,

    This is a great bit of code!

    I have one question though, how do I hide the Previous button on only the first slide?
    So that visitors only have the option of going to the next slide and not backwards.

    Can you help?

  • Kyle

    sorry i missed the y off the end, I meant to say hey Dicky haha

  • meoghe

    Hi, I were try your demo, it is great. Now, whould you like guide me how use jFlow with content by get from database? I were try, but jFlow alway execute first load content from database.

  • http://www.levlane.com Rich

    Hi! Thanks so much for the code. I too modified it and it is blowing off the screen in IE6 and 7. Any ideas on why?

    My mods included
    - using an image instead of txt for the nav buttons
    - modified the scale of things
    - added a nested div to position some padding

    Thanks!
    Rich

  • http://www.levlane.com Rich

    hi Zak! Did you figure this answer out? I am wracking my brain on the exact same issue. Thanks a ton man!!
    Rich

  • http://www.yodfz.com/?p=202 会写代码的熊猫 Blog» 分享十五个最佳jQuery幻灯插件和教程

    [...] 官方网站 | 演示 [...]

  • http://www.24hourwebdesigner.com/ Disain

    excellent information, thank you thanks for the inspiration!

  • gary

    Hi,
    May I also have the auto scroll version please?

    Good work.

  • Sve

    Hey i would like to have vertical scrolling content also. Is this possible and how?
    Thank you for your script

  • Sve

    and just one more question: is it possible to have certain slide loaded when page loads?
    thanx

  • http://www.modernframeproductions.com chelsea

    Thanks so much for your amazing script!

    Here is what we’ve been playing with:

    http://www.modernframeproductions.com/clients/gabriela/installation.html

    Thanks again! Great work!! :)

  • http://wwww.andrewdotson.com Andrew

    I had the same issue as you did, it wasn’t working in ie7 or ie8. I was puzzled to what it was, and I still kina am, however I managed to fix it. I basically re copied the html structure from the demo and pasted it into my document. Perhaps the script is scrict when it comes to the html structure. I am pretty certain the error I had was because of the html structure (a missing div tag etc, which could effect how the script reads the child div elements) thusly causing an error, that some users have experienced.

    It is now working in IE7 and IE8 wondefully.

  • phil

    Local problem. It’s fixed.

  • http://www.mark-till-online.co.uk/ Mark Till

    Hey, really great tutorial and plugin so thanks for that.

    Can I just ask, and I would really appreciate a reply, is there any way you can make the transition fade instead of sliding?

    I know it’s a slider and it works great as a slider but my client now wants it to fade in and out and I’ve already styled this one perfectly for the site. I’m no jquery expert so if you know how to that would be fantastic.

    Look forward to hearing from you.

    Mark

  • Joe

    for the auto slide version how do i slow down the slide effect… ?

    i try to change the duration to 1500 and it is still fast

  • http://designbeep.com/2010/05/13/25-very-detailed-jquery-image-and-content-slider-tutorials/ 25 Very Detailed jQuery Image and Content Slider Tutorials |

    [...] 19.Create Content Slider using jFlow, A Minimalist jQuery Plugin [...]

  • james

    Yeah – so I downloaded the file that’s here for the auto-scroll. And, well….no dice. I went to the site that the author gives in the June 16, 2009 at 7:14 am post; the JS for that one worked for me: it did the auto scroll that i was looking for. Thanks for this! Cheers!

  • http://urbhub.com Brad

    Hi, all.

    Thx for the tutorial. One question I have, the auto scroll doesn’t seem to be working for me. The site that I’m testing it on is robinrath.com/timberline … I’m assuming the auto scroll edition means that the slides should go through automatically. Any ideas why mine are not?

    Cheers,
    Brad

  • http://www.wsblogz.com/tools/best-jquery-feature-content-slider-plugins-and-tutorials/ Best jQuery Feature Content Slider plugins and tutorials - Wsblogz.com – Web design magazine

    [...] Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin [...]

  • http://www.booser.com/web-design/tutorials/awesome-jquery-content-slider-scripts-and-tutorials.html Awesome jQuery Content Slider Scripts and Tutorials | Linux Support & Tutorials – Booser.com

    [...] Step By Step To Create Content Slider using jFlow [...]

  • http://alexishida.com/blog/?p=69 Best jQuery Feature Content Slider plugins and tutorials

    [...] Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin [...]

  • http://www.johnoleary.co.uk John O’Leary

    Hi Joe, go to line 149 and change the number to the setInterval function.

    8000 worked well for me ;)

  • Jules César

    Hi thax for the tuto, however, the demo link is down, either the jFlow one.

  • http://britconsultoria.com.br/tecnico/?p=21 13 super slides com Jquery « Diretório Técnico

    [...] Step By Step To Create Content Slider using jFlow [...]

  • http://gap.web.id/index.php/2010/06/step-by-step-membuat-content-slider-menggunakan-jflow-minimalis-jquery-plugin/ Step By Step Membuat Content Slider menggunakan jFlow, minimalis jQuery Plugin | GAPWEBID
  • Arjuna

    Great job with the content slider!

    Thanks.

  • Allison

    ahh thanks so much

  • http://matt-ireland.com Matt ireland

    can i also have a copy of the auto scroll

  • http://techalap.com/2010/06/22/ultimate-collection-top-jquery-tutorials-tips-tricks-techniques-improve-performance/ Ultimate collection of top jQuery tutorials, tips-tricks and techniques to improve performance

    [...] Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin [...]

  • http://www.annasmithphoto.wordpress.com Anna

    I’m working on my site and hoped to add this. But does it not work with IE8? Even the demo doesn’t show in internet explorer when i preview it from Dreamweaver. It’s just the text all written out in divs. I also have “ActiveX controls disabled” but when i enable them nothing changes. Thanks!

  • http://forum.ceviz.net/javascript-dhtml-ajax/95121-jquery-slide-gosteriminde-otomatik-devam-etmesi.html#post578624 Anonymous

    [...] [...]

  • http://www.tayfunaciyan.com.tr Tayfun

    Hi! i want the auto scrolling version, how can i download it or can you mail to me?

  • http://infinitoealem.com rodrigo

    “Quick note to those using the auto scroller, don’t delete the next and back buttons it needs them! Just display:none instead”

    This is really important!! I lost hours working on the auto version an didn’t find a way to work the autoplay, but there is the problem: I deleted the next and prev buttons from the html, instead of set them as display:none. Thanks

    Great Plugin!

  • http://www.jobawareness.com jobinson

    This plugin is really cool, i have rethink about doing website design again by implementing this plugin, it can be very useful for illustrations, presentations also, is it free or premium.

  • http://www.beautycss.cn/blog/?p=188 BeautyCss » Blog Archive » 15款漂亮的JQuery幻灯片插件

    [...] 官方网站 | 演示 [...]

  • Conrad

    I would like to be able to load the page on a specified slide, not only the first. Any ideas how I might do that?

    Thanks

  • http://kasamata.com.br/2010/07/slider-de-conteudo-em-jquery/ Slider de conteúdo em jQuery | Kasamata

    [...] Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin (esse link é só uma referência para se ter uma ideia rápida, já que tem alguma coisa quebrada [...]

  • http://www.swimsmooth.com Adam

    I suffered from the same problem and discovered that in IE the script doesn’t like any comments placed between the slides div wrapper and the first slide. Removed the comment and it works fine for me now in IE.

  • ravinder

    Thank you very much. Thanks great

  • http://dyanpermadi.com zoldik9

    i still dont understand about that ~.~
    but i will try harder,nice post ! :)

  • http://www.floupy.com/?p=64 17 Most Beautiful Sliders, Using Javascript, Jquery and Ajax | Floupy Design Blog

    [...] 15) Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin [...]

  • http://www.design21th.com Web Dizajn

    Very useful! THX!

  • MssBee

    I am having loading problems in IE 7 & 8. The second slide is showing before the styling kicks in.

    No problems with any of the other browsers. Anyone have a IE fix?

    Thanks for any help offered.

  • http://www.fimedia.ca/ Calgary Web Design

    Very nice – actually my success rate with getting a jQuery to fire myself (without the assistence of our developer of course) is really hit and miss, but I found how you presented this one to be very easy to follow (and implement!)

    Did notice (as others have commented) that the Demo link is still offline – otherwise fantastic bit of info – thanks!

  • http://www.ilkaymola.com/25-jquery-and-css-image-galleryslider-plugins/ 25 jQuery and CSS Image Gallery/Slider Plugins | ilkaymola.com

    [...] Step By Step To Create Content Slider using jFlow [...]

  • Scott

    Roy, this response may be late, but I had the same problem, and was able to work it out. Hopefully, you and/or others may find this useful.

    1) Change the CSS of the slide wrapper to read as follows:

    .slide-wrapper { padding: 5px; visibility: hidden; }

    2) Second, add this code somewhere AFTER you’ve loaded jQuery:

    function load() {
    $(‘.slide-wrapper’).css(‘visibility’,'visible’);
    };

    3) Finally, change your body tag to read:

    That’s it! Basically, when the page first loads, all the images and text in the slide-wrapper class will be invisible. Once the page is loaded, the “body onload” tag will trigger the code that makes everything in the slide-wrapper class visible!

    I hope this helps.

  • Scott

    Roy, this response may be late, but I had the same problem, and was able to work it out. Hopefully, you and/or others may find this useful.

    1) Change the CSS of the slide wrapper to read as follows:

    .slide-wrapper { padding: 5px; visibility: hidden; }

    2) Inside a script type=”text/javascript” tag (and NOT inside a jQuery function), somewhere after jQuery is loaded, add the following function:

    function load() {
    $(“.slide-wrapper”).css(“visibility”,”visible”);
    };

    3) To call this code, change your body tag to read (inside the angle brackets, naturally):

    body onload=”load()”

    Basically, you’re hiding everything inside the slide-wrapper class as the page is being loaded, and making it visible only after the page has finished loading.

  • Scott

    I also wished for a pause function to the auto-scroll version, but I didn’t like the hover idea for two reasons.

    First, there was nothing that really communicated to the user that they could stop the scrolling by hovering. Second, I wanted users of mobile touchscreen devices to be able to pause the scrolling.

    Under these circumstances, clickable text seemed to be the best option. Here’s how I did it:

    1) HTML: In the myController div, located right after the jFlowNext span, I add a new span whose text is just the word “Pause” (without quotes). The opening span tag should look like this (between the angle brackets):

    span id=”jFlowGoStop” class=”jFlowPause”

    2) JAVASCRIPT: In the mycontroller options (somewhere in your HEAD section), where you set the options (width, height, duration, etc.), highlight the line that says “next: ‘.jFlowNext’ , // must be class, use . sign”. There, post these lines:

    next: “.jFlowNext”, // must be class, use . sign
    prbtt: “#jFlowGoStop”, // must be id, use # sign
    paus: “jFlowPause”, // just pure text, no sign
    resm: “jFlowResume” // just pure text, no sign

    (You’re setting new options for the plug-in)

    3) JAVASCRIPT: Add the following lines in your jQuery function in the head section (Just after the option-setting function closes is good). These lines will swap the “Pause” text for the word “Resume” (Note that, while the scroll is paused, clicking “Resume”, “Prev”, “Next”, or any of the numbers will cause the scroll to resume, and the text is changed back to “Pause”):

    $(‘#jFlowGoStop’).click(function() {
    if ($(‘#jFlowGoStop’).attr(‘class’) == ‘jFlowPause’) {
    $(‘#jFlowGoStop’).html(‘Resume’).addClass(‘jFlowResume’).removeClass(‘jFlowPause’);
    }
    else {
    $(‘#jFlowGoStop’).html(‘Pause’).addClass(‘jFlowPause’).removeClass(‘jFlowResume’);
    };
    });

    $(‘.jFlowPrev’).click(function() {
    $(‘#jFlowGoStop’).html(‘Pause’).addClass(‘jFlowPause’).removeClass(‘jFlowResume’);
    });

    $(‘.jFlowControl’).click(function() {
    $(‘#jFlowGoStop’).html(‘Pause’).addClass(‘jFlowPause’).removeClass(‘jFlowResume’);
    });

    $(‘.jFlowNext’).click(function() {
    $(‘#jFlowGoStop’).html(‘Pause’).addClass(‘jFlowPause’).removeClass(‘jFlowResume’);
    });

    4) CSS: Where you have the css defined for .jFlowControl, .jFlowPrev, and .jFlowNext, make sure to change the line so it appears like this:

    .jFlowControl, .jFlowPrev, .jFlowNext, .jFlowPause, .jFlowResume { YOUR PATICULAR CSS SETTINGS HERE }

    This also needs to be done for the hover pseudo-classes:

    .jFlowControl:hover, .jFlowPrev:hover, .jFlowNext:hover, .jFlowPause:hover, .jFlowResume:hover { YOUR PATICULAR CSS SETTINGS HERE }

    5) JAVASCRIPT: Finally, we need to add a few lines of code to the plug-in. Go into the plug-in file, highlight the line that reads “next: ‘.jFlowNext’ // must be class, use . sign”, and change it to this (again, that comma added after the “next” setting is important!):

    next: “.jFlowNext”, // must be class, use . sign
    prbtt: “#jFlowGoStop”, // must be id, use # sign
    paus: “jFlowPause”, // just pure text, no sign
    resm: “jFlowResume” // just pure text, no sign

    …and finally, we add the code that actually pauses the scrolling feature, and resumes it when “Resume” is clicked (just an adaption of the above “pause/hover” code):

    $(opts.prbtt).click(function() {
    if ($(opts.prbtt).attr(“class”) == opts.paus) {
    clearInterval(timer);
    }
    else {
    dotimer();
    };
    });

    If done right, your controller should now have the text “Pause”. When clicked, the text should change to “Resume”, and the scrolling should pause.

    Clicking anything at that point (“Prev”,”Next”,”Resume”, or any of the slide numbers) should start the auto-scrolling again (In the case of “Resume”, it will wait 10 seconds, then scroll).

  • http://www.blazewebstudio.co.za/marketing_guide Geoffrey Gordon

    Works great in all other browsers except ie8, please check my website and tell me why

    http://demo.blazewebstudio.co.za/ventoliteblinds/index.html

  • Jay

    Excellent thanks – I have used it on my site.

    NOTE: The link to the autoscroll feature file – jquery.flow.1.2.auto.js – is just below the 6th step in the article.

    Many thanks to “mgsmus” who posted this to pause the autoslide on hover: – great job!

    //Pause/Resume at hover
    $(opts.slides).hover(
    function() {
    clearInterval(timer);
    },

    function() {
    dotimer();
    }
    );

    placed it after the dotimer(); call on line 153. in the jquery.flow.1.2.auto.js file.

    AND in the head you just use 2 JS files:

    And you’re good to GO. THANKS!

  • Jay

    The 2 js files in the head are

    ajax.googleapis jquery library & jquery.flow.1.2.auto.js

  • http://www.avanim-prod.com/blog/ajax-jquery/13-tutoriels-de-slider-jquery-135 13 tutoriels de slider jQuery | Creation site Intenet et logiciel, web agency Lyon – Blog AVANIM

    [...] Content Slider jFlow [...]

  • Mauro

    hi everybody, i had the same problem of BrandonSetter, the guy who was asking if there is some way to let jflow scrolls slide from left to right.. well, i have modified the code of the library because i need that function too, just added a new parameter ‘direction’ (you can set it ‘left’ by default or ‘right’) that changes the auto-scroll direction and the slide order. it worked for me and i hope that will be useful :D
    please contact me if there are mistakes.

    enjoy!

    http://www.mediafire.com/?2vndvvv92b138a6

    PS i’m working on my website ’cause i don’t have it yet, sorry for hosting on mediafire

  • Mauro

    there is a variable called ‘cur’ initialized to value 0. if you change that with the order-number of the slide you want to show for first (remember they are zero-based), the script will start from that one. it worked for me

  • http://www.happy2web.info happymido

    Thnxxxxxxxxx it’s great work

  • http://mayeul.guiraud.free.fr Markhor

    The thing is working very great, congrat.
    but, Hum, i’ve got a problem.
    I want to put a link in it. For exemple : you click on the picture and it opens a video or a new web page
    I’m sure it’s just simple but i didn’t found out how to do this…

    Thanks for answers

  • http://webkook.com/archives/143 15个最佳jQuery幻灯插件和教程 · WebKook

    [...] 官方网站 | 演示 [...]

  • http://www.executiveedge1.com/index.htm Allan Fine

    There is so much on the net now and so many ways of plugging in. I will have to try jQuery on one of my sites thanks for the great info.

  • http://thin-media.ca/reseaux/featured-content-jquery-ajax-mise-en-avant/ featured content jquery ajax (mise en avant) | Thin:Media

    [...] Slider avec jFlow Site [...]

  • http://www.freshdesignweb.com/80jquery-image-slideshow-and-content-slider-tutorial.html jQuery Image Slideshow and Content Slider « CSS & JQuery Sample – FreshDesignWeb

    [...] Minimize the arguments you need to input and still give some decent effects.VISIT THE DEMO19.Create Content Slider using jFlow, A Minimalist jQuery PluginA tutorial on using jFlow, a minimalist jQuery plugin to create a content slider.VISIT THE [...]

  • yash

    thanks
    upload proper version of auto-slide
    jFlow, A Minimalist jQuery Plugin Content Slider…….

  • http://320volt.com 320volt

    Very Thank You

    Best regards

  • http://dzwebs.co.uk dzwebs

    thanks, this is nice

  • mssbee

    My slider css is in styles.css and when I use your code the slider remains hidden. Where would I tweak the code to make it work?

  • Mauro

    put the slide content in a tag, uhu? :)

  • http://onlinecoachingsoftware.info David Coach

    Thank you very much for your code and tutorial! I’m looking for a good “sliding solution” to my wordpress. I’ve found some plugins, but every plugin has some problems. Maybe I should create one by myself?

  • KM

    Great slider, However, does anyone know why this does not work in IE7? It works well in Safari and FF. Thanks, need help desperately!

  • http://www.kutsurogispaguam.com ottomated

    im also trying to do the same thing. did you find a solution for your problem?

  • http://www.noupe.com/tutorial/more-on-jquery-slider-plugins-and-tutorials.html More on jQuery: Slider Plugins and Tutorials – Noupe Design Blog

    [...] Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin Here you will need to have some basic XHTML/CSS and JavaScript skills — you can then learn how to use jFlow, a minimalist jQuery plugin to create a content slider: [...]

  • http://4script.site40.net/13-%d1%81%d1%83%d0%bf%d0%b5%d1%80-%d0%bf%d0%be%d0%bb%d0%b5%d0%b7%d0%bd%d1%8b%d1%85-jquery-%d1%81%d0%ba%d1%80%d0%b8%d0%bf%d1%82%d0%b0-%d0%b4%d0%bb%d1%8f-%d1%81%d0%be%d0%b7%d0% 13 супер полезных jQuery скрипта для создания слайдера «Рекомендуемые» « 4script.site40.net

    [...] Step By Step To Create Content Slider using jFlow [...]

  • http://studiomydesign.com mydesign.com

    Jquery my love!

  • http://bali-property.tk/2011/02/12/13-exellent-jquery-content-slider-scripts-and-tutorials/ 13 Exellent jQuery Content Slider Scripts and Tutorials | PROPERTY Instings

    [...] Step By Step To Create Content Slider using jFlow [...]

  • http://www.woupe.com/?p=47 More on jQuery: Slider Plugins and Tutorials | Woupe Design Blog

    [...] Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin Here you will need to have some basic XHTML/CSS and JavaScript skills — you can then learn how to use jFlow, a minimalist jQuery plugin to create a content slider: [...]

  • http://www.olivermichas.com Oliver Michas

    Thanks for the tip, it worked for me!
    Have to hate IE ^^

  • http://www.woupe.com/2011/02/more-on-jquery-slider-plugins-and-tutorials/ More on jQuery: Slider Plugins and Tutorials | Woupe Design Blog

    [...] Step By Step To Make Content Slider using jFlow, A Minimalist jQ… Here you will need to have some basic XHTML/CSS and JavaScript skills — you can then learn how to use jFlow, a minimalist jQuery plugin to make a content slider: [...]

  • http://www.la-ptite-gazette.com Le Rédac

    Hi, very nice tutorial, great script
    I’d love to get a copy of the auto scroll version. Please email it to me when you have a minute.

  • gilmaraelisa

    Thanks for the tutorial, it’s excellent.
    Great script.

  • http://www.topwebpost.com/15-top-jquery-sliders-examples/ 15 Top jQuery Sliders Examples

    [...] A Minimalist jQuery Plugin | Official Website [...]

  • Umesh Bohara

    really the site is very helpful and nice… i like it…. thank you…

  • http://www.webdesignerslog.com webdesignerslog

    Nice post thanks for explanation… really helpful.

  • http://www.smashingeeks.com/featured/40-useful-jquery-and-ajax-based-sliders-tutorials-scripts.html 40+ Useful jQuery and Ajax Based Sliders, Tutorials & Scripts | SmashinGeeks

    [...] Minimalist jQuery Plugin | Official Website | [...]

  • Molech

    I would like the auto scroll version, thanks!

  • http://www.uyes.info/?p=239 jQuery幻灯片 – 你能行

    [...] 12. Start/Stop Slider 官方网站 | 演示 13. 一个简约的jQuery插件 官方网站 | 演示 [...]

  • http://kedou.net/wordpress/4569.html 15个最佳jQuery幻灯插件和实例 « 蝌蚪网赚联盟

    [...] 官方网站 | 演示 [...]

  • http://hurbox.gotoip55.com/web/112.html 最佳15个jQuery幻灯插件和实例 | 阿越的博客

    [...] 官方网站 | 演示 [...]

  • Rahul Talar

    Really Great Plugin and Tutorial .This is what i was looking for

  • http://www.seowebshop.co.uk Dan

    Hi, is was wondering if you could send me the auto scroller for jflow as i wanted my banner to auto scroll

  • http://www.ihlassaglikrobotu.com İhlas Temizlik Robotu

    Thanks good jquery sample

  • http://itswadesh.wordpress.com/2011/05/07/create-a-vertical-scrolling-news-ticker-with-jquery-and-jcarousel-lite/ Create A Vertical Scrolling News Ticker With jQuery and jCarousel Lite « Swadesh's Technology Note

    [...] News Ticker is a fantastic way to present headlines or minor updates to your readers. The smooth scrolling effect will attract your readers and generate more clicks to your site. I am writing this tutorial as there are readers ask about this after they read my tutorial about content slider. [...]

  • http://www.primoingoogle.it/50-slider-gallerie-fotografiche-plugin-tutorial-in-jquery/ 50 slider, gallerie fotografiche, plugin, tutorial in jquery – Parte II

    [...] Tutorial [...]

  • Sabitha13Maria

    Hi,

    How do I add another slider right next to it, so I have two of them? Or even anothe rphoto or gadget on the other side of the slider? thanks!

  • Anthony Malloy

    Can’t thank you enough, removing a comment I had made it work fine in IE8. 

  • http://latenightstop.com/?p=770 Just Great 89 Unique jQuery Slider Tutorials And Plugins

    [...] 25. Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin [...]

  • http://4script.site40.net/13-super-poleznyih-jquery-skripta-dlya-sozdaniya/ 13 супер полезных jQuery скрипта для создания слайдера “Рекомендуемые” | 4script.site40.net | Best Scripts For Webmaster

    [...] Step By Step To Create Content Slider using jFlow Blog News ← Aparatus – бесплатная тема для WordPress Vanilla 2.0 – форумный движок нового поколения → /* */ [...]

  • http://fobita.com/2011/05/24/13-super-useful-jquery-content-slider-scripts-and-tutorials/ 13 Super Useful jQuery Content Slider Scripts and Tutorials

    [...] Step By Step To Create Content Slider using jFlow [...]

  • http://www.webdesignburn.com/2011/06/06/19-useful-jquery-image-slider-plugins-and-tutorials/ 19 Useful Jquery Image Slider Plugins and Tutorials | Web Design Burn

    [...] Create Content Slider using jFlow, A Minimalist jQuery Plugin [...]

  • Fede23ww

    hi, how to move up and down the content ??

    Thanx!!

  • http://webblogvn.com/step-by-step-to-create-content-slider-using-jflow-a-minimalist-jquery-plugin/ Step By Step To Create Content Slider using jFlow, A Minimalist jQuery Plugin | WEBBLOGVN.COM

    [...] a style.css file, and insert the following code into the file: view plaincopy to [...]

  • http://qqpcc.com/?p=101 15个最佳jQuery幻灯插件和教程 | QQPCC的个人博客

    [...] 一个简约的jQuery插件官方网站 | [...]

  • http://www.facebook.com/profile.php?id=627131107 Patrik Lund

    How do i use several slideshows on my page. When i try none of the slideshows work. Do i need to use several js files? Any ideas?

  • Jodi Salisbury

    Excellent plugin. Quick question: Is there a way to make the slider loop instead of traversing left to the first slide? Thanks in advance.

  • Anonymous

    Great tutorial all is working :) accept you see a quick flash of all the content while the page is loading, how do i get rid of this?

  • Flatorbinfo

    i downloaded the auto scrol js file and added it to the header. but the auto scroll is not working. can some one please let me know how to make it work please?

  • Flatorbinfo

    can you please send me the auto scroll version as well please.

  • http://pulse.yahoo.com/_OVMM2XCSP75TZPIW77M6MF27CY Michael C

    DId you ever get an answer on this?

  • Jimish Shah

    slider is good but I need continue scroll from right to left. Currently it has been move left to right when the 5th image is over.

    See below:
    Existing is 1, 2, 3, 4, 5 & reverse manner

    I need 1,2,3,4,5,1,2,3,4,5,1,2 like that…continuously please help I have use this slider in my project…

  • Seaox618

    Working example here: 

    http://www.NaturalBodyInc.com

    Thanks!!

  • Seaox618

    Couldn’t find out how to fade but if the sliding transition is annoying you can just set the duration to 0 so it just switches to the next slide…

  • http://www.facebook.com/profile.php?id=505278145 Jimmy Ho

    Excellent! Thanks but how do I post featured content into it? Thanks.

  • Mike_schenck

    did you get an answer to this?

  • Mike_schenck

    anyone know how to make it continually scroll right, instead of after the first slide stop and scroll left and reset?

    also be able to add a pause button?    thank you

  • Julie

    Mike did you manage to fix it?

  • Zemorango

    Add this to de DIV off the slider : style=”OVERFLOW-X: hidden; OVERFLOW-Y: hidden”

  • Mwbs

    no, never received a reply

  • Junk

    Stop doing this. This is annoying the end user.

  • http://www.webmentor.cr/ Marco Berrocal

    Demo didn’t work buddy.

  • Krite

    i want create widget ( follow this site : http://www.spinonesolutions.com/2010/10/magento-custom-widget/comment-page-1/#comment-30957 ) but How to create or add jQurey and add Nivo slider ( http://nivo.dev7studios.com/ ) please tech me step by step. thank you.

  • nl

    I have same problem like rocetdaniel above, and i’ve try zemorango advice but it not fix it. can someone please direct me exactly where to insert: style=”OVERFLOW-X: hidden; OVERFLOW-Y: hidden” in the div

  • Mystycs

    How did you include the images instead of text?

  • Gfd

    fdhfdhdfhdffhd

  • http://www.facebook.com/swapnil.kocheta Swapnil Kocheta

    Demo Does not work for me !

  • http://www.facebook.com/swapnil.kocheta Swapnil Kocheta

    Demo Does not work for me !

  • KennyBrain

    Server not found

  • Matthew

    seems to be a problem with jflow2 
    http://warrington.com/ - try pressing next multiple times. Any ideas?, seems to loose its position and go blank

blog comments powered by Disqus