<?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: Creating a Rotating Billboard System with jQuery and CSS</title>
	<atom:link href="http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/</link>
	<description>Useful resources and inspiration for creative minds</description>
	<lastBuildDate>Wed, 08 Feb 2012 19:26:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Prodyot</title>
		<link>http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/comment-page-4/#comment-409463</link>
		<dc:creator>Prodyot</dc:creator>
		<pubDate>Fri, 20 Jan 2012 18:06:45 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1046#comment-409463</guid>
		<description>It is unique and awesome.
Some beautiful head you have which houses beautiful ideas.
Keep up the good things.
And, thanks for sharing.</description>
		<content:encoded><![CDATA[<p>It is unique and awesome.<br />
Some beautiful head you have which houses beautiful ideas.<br />
Keep up the good things.<br />
And, thanks for sharing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vetzo</title>
		<link>http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/comment-page-4/#comment-392370</link>
		<dc:creator>vetzo</dc:creator>
		<pubDate>Thu, 12 Jan 2012 15:33:55 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1046#comment-392370</guid>
		<description>So if you need more than one two pictures in the rotator here it is the procedure:

in style.css, replace the line &quot;.ad_2 img{&quot; with &quot;.ad_2 img, .ad_3 img, .ad_4 img{&quot; if you need you can go even more further... ;) 

in index.html replace script part with: 


$(function() {            
    $(&#039;#ad_1 &gt; img&#039;).each(function(i,e){
        rotate($(this),1300,3000,i);
    });
    function rotate(elem1,speed,timeout,i){
        elem1.animate({&#039;marginLeft&#039;:&#039;18px&#039;,&#039;width&#039;:&#039;0px&#039;},speed,function(){
            var other;
            if(elem1.parent().attr(&#039;id&#039;) == &#039;ad_1&#039;)
                other = $(&#039;#ad_2&#039;).children(&#039;img&#039;).eq(i);
            else if(elem1.parent().attr(&#039;id&#039;) == &#039;ad_2&#039;)
                other = $(&#039;#ad_3&#039;).children(&#039;img&#039;).eq(i);
			else if(elem1.parent().attr(&#039;id&#039;) == &#039;ad_3&#039;)
                other = $(&#039;#ad_4&#039;).children(&#039;img&#039;).eq(i);
            else
                other = $(&#039;#ad_1&#039;).children(&#039;img&#039;).eq(i);
                other.animate({&#039;marginLeft&#039;:&#039;0px&#039;,&#039;width&#039;:&#039;35px&#039;},speed,function(){
                var f = function() { rotate(other,speed,timeout,i) };
                setTimeout(f,timeout);
            });
        });
    }
});
        

if you need you can add more else if loops, and just copy whole div with class ad_1 change his class and id to ad_3 and change img src, do the same thing for ad_4 ;)

so i hope i helped someone :)

btw. posto bi reko da smo susjedi puno hvala manoela na izvrsnoj ideji :)</description>
		<content:encoded><![CDATA[<p>So if you need more than one two pictures in the rotator here it is the procedure:</p>
<p>in style.css, replace the line &#8220;.ad_2 img{&#8221; with &#8220;.ad_2 img, .ad_3 img, .ad_4 img{&#8221; if you need you can go even more further&#8230; ;) </p>
<p>in index.html replace script part with: </p>
<p>$(function() {<br />
    $(&#8216;#ad_1 &gt; img&#8217;).each(function(i,e){<br />
        rotate($(this),1300,3000,i);<br />
    });<br />
    function rotate(elem1,speed,timeout,i){<br />
        elem1.animate({&#8216;marginLeft&#8217;:&#8217;18px&#8217;,'width&#8217;:&#8217;0px&#8217;},speed,function(){<br />
            var other;<br />
            if(elem1.parent().attr(&#8216;id&#8217;) == &#8216;ad_1&#8242;)<br />
                other = $(&#8216;#ad_2&#8242;).children(&#8216;img&#8217;).eq(i);<br />
            else if(elem1.parent().attr(&#8216;id&#8217;) == &#8216;ad_2&#8242;)<br />
                other = $(&#8216;#ad_3&#8242;).children(&#8216;img&#8217;).eq(i);<br />
			else if(elem1.parent().attr(&#8216;id&#8217;) == &#8216;ad_3&#8242;)<br />
                other = $(&#8216;#ad_4&#8242;).children(&#8216;img&#8217;).eq(i);<br />
            else<br />
                other = $(&#8216;#ad_1&#8242;).children(&#8216;img&#8217;).eq(i);<br />
                other.animate({&#8216;marginLeft&#8217;:&#8217;0px&#8217;,'width&#8217;:&#8217;35px&#8217;},speed,function(){<br />
                var f = function() { rotate(other,speed,timeout,i) };<br />
                setTimeout(f,timeout);<br />
            });<br />
        });<br />
    }<br />
});</p>
<p>if you need you can add more else if loops, and just copy whole div with class ad_1 change his class and id to ad_3 and change img src, do the same thing for ad_4 ;)</p>
<p>so i hope i helped someone :)</p>
<p>btw. posto bi reko da smo susjedi puno hvala manoela na izvrsnoj ideji :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/comment-page-4/#comment-341705</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Wed, 21 Dec 2011 12:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1046#comment-341705</guid>
		<description>Ahhhh.... Just lovely. I&#039;m a Jquery addict so I&#039;ll be adding this to my collection. Many thanks!</description>
		<content:encoded><![CDATA[<p>Ahhhh&#8230;. Just lovely. I&#8217;m a Jquery addict so I&#8217;ll be adding this to my collection. Many thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M</title>
		<link>http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/comment-page-4/#comment-299847</link>
		<dc:creator>M</dc:creator>
		<pubDate>Thu, 01 Dec 2011 15:59:10 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1046#comment-299847</guid>
		<description>Is there a way of setting it up so that it has more than 2 slides,   maybe 4 or 5...

I would like to use it on the news page on my site...</description>
		<content:encoded><![CDATA[<p>Is there a way of setting it up so that it has more than 2 slides,   maybe 4 or 5&#8230;</p>
<p>I would like to use it on the news page on my site&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jerry</title>
		<link>http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/comment-page-4/#comment-276463</link>
		<dc:creator>jerry</dc:creator>
		<pubDate>Sat, 19 Nov 2011 01:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1046#comment-276463</guid>
		<description>hey guys its great but is there a way to add a url link to the pictures on billboard thats the whole point advertising but i cant seem to do it say u click on pic and it goes to url address ...bla...a website ??????????
anyone thanks !</description>
		<content:encoded><![CDATA[<p>hey guys its great but is there a way to add a url link to the pictures on billboard thats the whole point advertising but i cant seem to do it say u click on pic and it goes to url address &#8230;bla&#8230;a website ??????????<br />
anyone thanks !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Virginads</title>
		<link>http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/comment-page-4/#comment-177238</link>
		<dc:creator>Virginads</dc:creator>
		<pubDate>Mon, 12 Sep 2011 19:30:27 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1046#comment-177238</guid>
		<description>hi

it looks really impressive.
probably the strange part part is lights on a billboard frame - mostly they are located on the top ;)

otherwise - I love it :)</description>
		<content:encoded><![CDATA[<p>hi</p>
<p>it looks really impressive.<br />
probably the strange part part is lights on a billboard frame &#8211; mostly they are located on the top ;)</p>
<p>otherwise &#8211; I love it :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HEXJUMPER</title>
		<link>http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/comment-page-4/#comment-164092</link>
		<dc:creator>HEXJUMPER</dc:creator>
		<pubDate>Sat, 27 Aug 2011 15:17:07 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1046#comment-164092</guid>
		<description>i managed to have the effect working with seven (7) pictures (800 X 336) !
to see it click on my HEXJUMPER name on this comment please.
(attention the previous comment,dd.24 august 2011,with the HEXJUMPER name is an alternative website with alternative effect too!)</description>
		<content:encoded><![CDATA[<p>i managed to have the effect working with seven (7) pictures (800 X 336) !<br />
to see it click on my HEXJUMPER name on this comment please.<br />
(attention the previous comment,dd.24 august 2011,with the HEXJUMPER name is an alternative website with alternative effect too!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HEXJUMPER</title>
		<link>http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/comment-page-3/#comment-161527</link>
		<dc:creator>HEXJUMPER</dc:creator>
		<pubDate>Wed, 24 Aug 2011 14:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1046#comment-161527</guid>
		<description>it would be nice if one could add a couple or more pix!(4 or 6 or 8)
please supply the right working code
to do this.thanx  :))
i altered the speed like this on my personal webpage intro:

 rotate($(this),1300,13000,i);

so the panels turn more in harmony even when the animation runs long time.</description>
		<content:encoded><![CDATA[<p>it would be nice if one could add a couple or more pix!(4 or 6 or 8)<br />
please supply the right working code<br />
to do this.thanx  :))<br />
i altered the speed like this on my personal webpage intro:</p>
<p> rotate($(this),1300,13000,i);</p>
<p>so the panels turn more in harmony even when the animation runs long time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith D</title>
		<link>http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/comment-page-3/#comment-139151</link>
		<dc:creator>Keith D</dc:creator>
		<pubDate>Fri, 22 Jul 2011 15:13:53 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1046#comment-139151</guid>
		<description>I put it online with the idea of selling adverts and getting people to tweet social it etc

http://www.twitted.co/

Just got to get a few things in place but overall this looks like a great little concept to have a play about with

I used the name TwitTed as I have many Double T Ted&#039;s 

They are Teddy Bear Characters and TwitTed will appear on your Billboard demo on TwitTed.co son Folks

So Look Back Soon Folks :) 

Nobody will notice that Loony Toons ref there will they?</description>
		<content:encoded><![CDATA[<p>I put it online with the idea of selling adverts and getting people to tweet social it etc</p>
<p><a href="http://www.twitted.co/" rel="nofollow">http://www.twitted.co/</a></p>
<p>Just got to get a few things in place but overall this looks like a great little concept to have a play about with</p>
<p>I used the name TwitTed as I have many Double T Ted&#8217;s </p>
<p>They are Teddy Bear Characters and TwitTed will appear on your Billboard demo on TwitTed.co son Folks</p>
<p>So Look Back Soon Folks :) </p>
<p>Nobody will notice that Loony Toons ref there will they?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/comment-page-3/#comment-116809</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 28 Jun 2011 09:23:17 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1046#comment-116809</guid>
		<description>How could i use this on joomla?</description>
		<content:encoded><![CDATA[<p>How could i use this on joomla?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/feed/ ) in 0.20517 seconds, on Feb 9th, 2012 at 12:29 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 9th, 2012 at 1:29 am UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for (  tympanus.net/codrops/2009/12/16/creating-a-rotating-billboard-system-with-jquery-and-css/feed/ ) in 0.00028 seconds, on Feb 9th, 2012 at 12:35 am UTC. -->
