<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: jQuery cycle plugin as carousel</title>
	<atom:link href="http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/feed/" rel="self" type="application/rss+xml" />
	<link>http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/</link>
	<description>ABCoder - Coding is Simple as A b c</description>
	<lastBuildDate>Sun, 25 Jul 2010 05:39:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Rahen</title>
		<link>http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/comment-page-1/#comment-5969</link>
		<dc:creator>Rahen</dc:creator>
		<pubDate>Tue, 23 Mar 2010 18:55:57 +0000</pubDate>
		<guid isPermaLink="false">http://abcoder.com/?p=72#comment-5969</guid>
		<description>Hi jvella,
with cycle plugin u can use multiple images or whatever per slide -- just like jcarousel...
u can wrap multiple images by a div or any block item... or u can use my tiny $.splitUp function... which is able to make dynamically slit Up long slides... into new smaller segments/slides...
[js]
$.fn.splitUp=function(splitBy,wrapper){
    $all= $(this).find(&#039;&gt;*&#039;);
    var fragment=Math.ceil($all.length/splitBy);
    for (i=0;i&lt;fragment;i++)
        $all.slice(splitBy*i,splitBy*(i+1)).wrapAll(wrapper);
    return $(this);
}
[/js]
//guess max 3 images per slide
u can use it something like...
[js]
$(&#039;div#slides&#039;)
.splitUp(4,&#039;&lt;li class=splitUp&gt;&lt;ul&gt;&#039;)
.cycle({
fx: &#039;scrollHorz&#039;
});
[/js]
or guess you have log ul/li slides..... in that case... use
[js]
$(&#039;div#slides&#039;)
.splitUp(4,&#039;&lt;div/&gt;&#039;)
.cycle({
fx: &#039;scrollVert&#039;,
next: &#039;#scroll #down&#039;,
prev: &#039;#scroll #up&#039;,
//fit: true,
speed: 2000,
timeout: 0,
cleartype: 1
});
[/js]

thanks</description>
		<content:encoded><![CDATA[<p>Hi jvella,<br />
with cycle plugin u can use multiple images or whatever per slide &#8212; just like jcarousel&#8230;<br />
u can wrap multiple images by a div or any block item&#8230; or u can use my tiny $.splitUp function&#8230; which is able to make dynamically slit Up long slides&#8230; into new smaller segments/slides&#8230;</p>
<pre class="brush: jscript;">
$.fn.splitUp=function(splitBy,wrapper){
    $all= $(this).find('&gt;*');
    var fragment=Math.ceil($all.length/splitBy);
    for (i=0;i&lt;fragment;i++)
        $all.slice(splitBy*i,splitBy*(i+1)).wrapAll(wrapper);
    return $(this);
}
</pre>
<p>//guess max 3 images per slide<br />
u can use it something like&#8230;</p>
<pre class="brush: jscript;">
$('div#slides')
.splitUp(4,'&lt;li class=splitUp&gt;&lt;ul&gt;')
.cycle({
fx: 'scrollHorz'
});
</pre>
<p>or guess you have log ul/li slides&#8230;.. in that case&#8230; use</p>
<pre class="brush: jscript;">
$('div#slides')
.splitUp(4,'&lt;div/&gt;')
.cycle({
fx: 'scrollVert',
next: '#scroll #down',
prev: '#scroll #up',
//fit: true,
speed: 2000,
timeout: 0,
cleartype: 1
});
</pre>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adnan</title>
		<link>http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/comment-page-1/#comment-3414</link>
		<dc:creator>adnan</dc:creator>
		<pubDate>Wed, 04 Nov 2009 04:36:33 +0000</pubDate>
		<guid isPermaLink="false">http://abcoder.com/?p=72#comment-3414</guid>
		<description>@jvella, can you pls send me the url of your work. I did not find any prob with IE7.</description>
		<content:encoded><![CDATA[<p>@jvella, can you pls send me the url of your work. I did not find any prob with IE7.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jvella</title>
		<link>http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/comment-page-1/#comment-3413</link>
		<dc:creator>jvella</dc:creator>
		<pubDate>Tue, 03 Nov 2009 22:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://abcoder.com/?p=72#comment-3413</guid>
		<description>I have a slideshow using only cycle with a scroll horz. I have six thumbs, three visible at first with prev and next arrows to see the other three. I also have an automatic transition through each thumb but when it gets to the fourth thumb, it doesn&#039;t scroll. Is this possible? Thanks!</description>
		<content:encoded><![CDATA[<p>I have a slideshow using only cycle with a scroll horz. I have six thumbs, three visible at first with prev and next arrows to see the other three. I also have an automatic transition through each thumb but when it gets to the fourth thumb, it doesn&#8217;t scroll. Is this possible? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jvella</title>
		<link>http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/comment-page-1/#comment-3411</link>
		<dc:creator>jvella</dc:creator>
		<pubDate>Tue, 03 Nov 2009 15:39:47 +0000</pubDate>
		<guid isPermaLink="false">http://abcoder.com/?p=72#comment-3411</guid>
		<description>Does your scrollHorz sometimes not work in IE 7?</description>
		<content:encoded><![CDATA[<p>Does your scrollHorz sometimes not work in IE 7?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adnan</title>
		<link>http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/comment-page-1/#comment-3343</link>
		<dc:creator>adnan</dc:creator>
		<pubDate>Sun, 25 Oct 2009 18:01:16 +0000</pubDate>
		<guid isPermaLink="false">http://abcoder.com/?p=72#comment-3343</guid>
		<description>Jvella, that&#039;s how cycle works. As you are putting 3 thumbs per div cycle will scroll one div at a time which is 3 thumbs per slide. You can not scroll one thumb per cycle.

According to your need you must have to use jcarousel plugin. You may have a look at my recent work here http://www.trendtogo.com. I used cycle for the slide-show and jcarousel for the product scroller.

I believe you know how to do that with jcarousel.</description>
		<content:encoded><![CDATA[<p>Jvella, that&#8217;s how cycle works. As you are putting 3 thumbs per div cycle will scroll one div at a time which is 3 thumbs per slide. You can not scroll one thumb per cycle.</p>
<p>According to your need you must have to use jcarousel plugin. You may have a look at my recent work here <a href="http://www.trendtogo.com" rel="nofollow">http://www.trendtogo.com</a>. I used cycle for the slide-show and jcarousel for the product scroller.</p>
<p>I believe you know how to do that with jcarousel.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jvella</title>
		<link>http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/comment-page-1/#comment-3342</link>
		<dc:creator>jvella</dc:creator>
		<pubDate>Sun, 25 Oct 2009 16:18:54 +0000</pubDate>
		<guid isPermaLink="false">http://abcoder.com/?p=72#comment-3342</guid>
		<description>Thanks adnan! This is really close to what I need. My only question: lets say you have six thumbnails. You want three to be visible at first and three to be invisible. Can you have the next and previous buttons run through the thumbs one at a time. You&#039;re solution runs through three at a time. Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks adnan! This is really close to what I need. My only question: lets say you have six thumbnails. You want three to be visible at first and three to be invisible. Can you have the next and previous buttons run through the thumbs one at a time. You&#8217;re solution runs through three at a time. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adnan</title>
		<link>http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/comment-page-1/#comment-3337</link>
		<dc:creator>adnan</dc:creator>
		<pubDate>Sun, 25 Oct 2009 03:13:35 +0000</pubDate>
		<guid isPermaLink="false">http://abcoder.com/?p=72#comment-3337</guid>
		<description>@jvella, Yes you can do it by putting multiple thumbs in one div and take the div as slide. Say &lt;pre lang=&quot;html&quot;&gt;&lt;div id=&quot;slider&quot;&gt;
 &lt;div&gt;multiple images - slide 1&lt;/div&gt;
 &lt;div&gt;multiple images - slide 2&lt;/div&gt;
&lt;/div&gt;&lt;/pre&gt; and apply &lt;pre lang=&quot;javascript&quot;&gt;$(&quot;#slider&quot;).cycle()&lt;/pre&gt;

If I&#039;m not wrong you are looking for this solution, right?</description>
		<content:encoded><![CDATA[<p>@jvella, Yes you can do it by putting multiple thumbs in one div and take the div as slide. Say
<pre lang="html">
<div id="slider">
<div>multiple images - slide 1</div>
<div>multiple images - slide 2</div>
</div>
</pre>
<p> and apply
<pre lang="javascript">$("#slider").cycle()</pre>
<p>If I&#8217;m not wrong you are looking for this solution, right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jvella</title>
		<link>http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/comment-page-1/#comment-3334</link>
		<dc:creator>jvella</dc:creator>
		<pubDate>Sun, 25 Oct 2009 00:08:35 +0000</pubDate>
		<guid isPermaLink="false">http://abcoder.com/?p=72#comment-3334</guid>
		<description>Were you able to have multiple thumbs in your cycle carousel? I only can cycle through one thumb at a time!</description>
		<content:encoded><![CDATA[<p>Were you able to have multiple thumbs in your cycle carousel? I only can cycle through one thumb at a time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Advanced cycle plugin integration</title>
		<link>http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/comment-page-1/#comment-1981</link>
		<dc:creator>Advanced cycle plugin integration</dc:creator>
		<pubDate>Fri, 21 Aug 2009 20:32:45 +0000</pubDate>
		<guid isPermaLink="false">http://abcoder.com/?p=72#comment-1981</guid>
		<description>[...] cycle plugin integration   Add   On my another post I mentioned that cycle is a great jQuery plugin. I use it very often for slideshow. Recently I used [...]</description>
		<content:encoded><![CDATA[<p>[...] cycle plugin integration   Add   On my another post I mentioned that cycle is a great jQuery plugin. I use it very often for slideshow. Recently I used [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adnan</title>
		<link>http://abcoder.com/javascript/jquery/jquery-cycle-plugin-as-carousel/comment-page-1/#comment-1524</link>
		<dc:creator>adnan</dc:creator>
		<pubDate>Mon, 29 Jun 2009 03:40:24 +0000</pubDate>
		<guid isPermaLink="false">http://abcoder.com/?p=72#comment-1524</guid>
		<description>Thank you @Martin</description>
		<content:encoded><![CDATA[<p>Thank you @Martin</p>
]]></content:encoded>
	</item>
</channel>
</rss>
