<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>l'indicible blog</title>
	<atom:link href="http://www.lindicible.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lindicible.com/blog</link>
	<description>&#60;!--:en--&#62;the details of the inexpressible&#60;!--:--&#62;&#60;!--:fr--&#62;les détails de l'ineffable&#60;!--:--&#62;</description>
	<lastBuildDate>Fri, 02 Sep 2011 19:30:56 +0000</lastBuildDate>
	<language>fr</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>BkgSlider</title>
		<link>http://www.lindicible.com/blog/2011/02/24/bkgslider/</link>
		<comments>http://www.lindicible.com/blog/2011/02/24/bkgslider/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 20:26:34 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=702</guid>
		<description><![CDATA[BkgSlider est un plugin jQuery qui vous permet d&#8217;avoir une galerie d&#8217;image pour vos background CSS. Démo Vous pouvez en voir un exemple sur la page de démonstration. Utilisation Pour utiliser BkgSlide, rien de plus simple : il vous suffit d&#8217;inclure la librairie jQuery et le plugin BkgSlide dans votre page et d&#8217;instancier le plugin [...]]]></description>
			<content:encoded><![CDATA[<p>BkgSlider est un plugin jQuery qui vous permet d&#8217;avoir une galerie d&#8217;image pour vos background CSS.</p>
<h3>Démo</h3>
<p>Vous pouvez en voir un exemple sur <a rel="external" href="http://blog.lindicible.com/wp-content/_custom/bkgslide/">la page de démonstration</a>.</p>
<h3>Utilisation</h3>
<p>Pour utiliser BkgSlide, rien de plus simple : il vous suffit d&#8217;inclure la librairie jQuery et le plugin BkgSlide dans votre page et d&#8217;instancier le plugin avec ses options.</p>
<pre>&lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="jquery.bkgslide.js"&gt; &lt;/script&gt;
&lt;script type="text/javascript"&gt;
$(document).ready(function(){
    $('#target').bkgSlide({
        images: ['images/img1.jpg', 'images/img2.jpg']
    });
});</pre>
<h3>Options</h3>
<h4>images</h4>
<p>Un tableau contenant le nom des images à utiliser.</p>
<h4>imagePath</h4>
<p>Le chemin où trouver les images.<br />
Le script ajoute automatiquement le slash final si nécessaire.</p>
<h4>speed</h4>
<p>La durée en millisecondes entre deux changements d&#8217;image.<br />
<strong>Défaut :</strong> 7000<br />
Si vous ne voulez pas que les images de fond changent automatiquement, mettez cette valeur à 0.</p>
<h4>direction</h4>
<p>La direction dans laquelle aller lors d&#8217;un changement d&#8217;image.<br />
<strong>Valeurs possibles :</strong> &#8216;random&#8217;, &#8216;next&#8217;, &#8216;prev&#8217;<br />
<strong>Défaut :</strong> &#8216;random&#8217;</p>
<h4>wrap</h4>
<p>Défini s&#8217;il faut reprendre à l&#8217;autre extrémité lorsqu&#8217;on atteint le bout de la liste d&#8217;images.<br />
<strong>Défaut :</strong> true</p>
<h4>nav</h4>
<p>Défini les outils de navigation.<br />
<strong>Valeurs possibles :</strong> true, une option sous forme de chaîne texte, un tableau des éléments de navigation souhaités dans l&#8217;ordre où vous voulez les voir apparaître</p>
<p>true / &#8216;all&#8217; : tous les éléments de navigation<br />
&#8216;list&#8217;       : liste de raccourcis vers chacune des images<br />
&#8216;prev&#8217;       : bouton pour aller à l&#8217;image précédente<br />
&#8216;next&#8217;       : bouton pour aller à l&#8217;image suivante<br />
&#8216;toggle&#8217;     : bouton permettant de démarrer ou d&#8217;arrêter le défilement automatique</p>
<p><strong>Défault :</strong> ['prev', 'list', 'next', 'toggle']</p>
<h4>stopOnNav</h4>
<p>Défini s&#8217;il faut arrêter le défilement automatique lorsque l&#8217;utilisateur utilise l&#8217;un des outils de navigation.<br />
<strong>Défaut :</strong> false</p>
<h4>width</h4>
<p>La largeur à donner aux conteneurs d&#8217;image.<br />
Avec la valeur &#8216;auto&#8217;, le script utilise la largeur de l&#8217;élément ciblé.<br />
<strong>Défaut :</strong> &#8216;auto&#8217;</p>
<h4>height</h4>
<p>La hauteur à donner aux conteneurs d&#8217;image.<br />
Avec la valeur &#8216;auto&#8217;, le script utilise la hauteur de l&#8217;élément ciblé.<br />
<strong>Défaut :</strong> &#8216;auto&#8217;</p>
<h4>containersClass</h4>
<p>Permet d&#8217;ajouter la classe souhaitée aux conteneurs d&#8217;image.<br />
<strong>Défaut :</strong> null</p>
<h4>effect</h4>
<p>L&#8217;effet appliqué lors de la transition entre deux images.<br />
<strong>Valeurs possibles :</strong>  &#8216;fadeOut&#8217;, &#8216;slideUp&#8217;, &#8216;hide&#8217;<br />
<strong>Défaut :</strong> &#8216;fadeOut&#8217;</p>
<h4>duration</h4>
<p>La durée de transition entre deux images (en millisecondes)<br />
</strong>Défaut :</strong> 500</p>
<h4>afterInit</h4>
<p>Une fonction de retour permettant d&#8217;agir après l&#8217;initialisation du BkgSlider.<br />
Cette fonction aura pour paramètres l&#8217;élément ciblé et son BkgSlider.</p>
<h3>Méthodes</h3>
<h4>move</h4>
<p>Se déplacer dans la liste d&#8217;images.<br />
</strong>Valeurs possibles :</strong> &#8216;next&#8217;, &#8216;prev&#8217;, &#8216;random&#8217;<br />
Si aucun paramètre n&#8217;est passé, la direction donnée dans les options est utilisée.</p>
<h4>changeTo</h4>
<p>Allez à l&#8217;image de l&#8217;index spécifié.<br />
Cette méthode requiert en paramètre l&#8217;index de l&#8217;image dans le tableau d&#8217;images (un nombre entre 0 et le nombre d&#8217;images -1).</p>
<h4>play</h4>
<p>Commencer l&#8217;animation automatique.<br />
Cette méthode accepte un nombre de millisecondes en paramètre, représentant l&#8217;interval de temps entre deux changements d&#8217;image.<br />
Si aucun paramètre n&#8217;est passé, la vitesse donnée dans les options est utilisée.</p>
<h4>stop</h4>
<p>Arrêter l&#8217;animation automatique.</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2F2011%2F02%2F24%2Fbkgslider%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/2011/02/24/bkgslider/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Quelque chose rôde&#8230;</title>
		<link>http://www.lindicible.com/blog/2010/12/05/quelque-chose-rode/</link>
		<comments>http://www.lindicible.com/blog/2010/12/05/quelque-chose-rode/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:34:02 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=699</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/0wcJFwzjMBM" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/0wcJFwzjMBM"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2F2010%2F12%2F05%2Fquelque-chose-rode%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/2010/12/05/quelque-chose-rode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jaune, vous dites ?</title>
		<link>http://www.lindicible.com/blog/2010/12/05/jaune-vous-dites/</link>
		<comments>http://www.lindicible.com/blog/2010/12/05/jaune-vous-dites/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:31:20 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=697</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/gJA9t4KZ0Dw" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/gJA9t4KZ0Dw"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2F2010%2F12%2F05%2Fjaune-vous-dites%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/2010/12/05/jaune-vous-dites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chez Daewoo, on aime bien les lampes de poches</title>
		<link>http://www.lindicible.com/blog/2010/12/05/chez-daewoo-on-aime-bien-les-lampes-de-poches/</link>
		<comments>http://www.lindicible.com/blog/2010/12/05/chez-daewoo-on-aime-bien-les-lampes-de-poches/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:30:24 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=695</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/nvTU0Zgjaj0" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/nvTU0Zgjaj0"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2F2010%2F12%2F05%2Fchez-daewoo-on-aime-bien-les-lampes-de-poches%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/2010/12/05/chez-daewoo-on-aime-bien-les-lampes-de-poches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C&#8217;est beau un rêve d&#8217;enfant qui se donne les moyens !</title>
		<link>http://www.lindicible.com/blog/2010/12/05/cest-beau-un-reve-denfant-qui-se-donne-les-moyens/</link>
		<comments>http://www.lindicible.com/blog/2010/12/05/cest-beau-un-reve-denfant-qui-se-donne-les-moyens/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:28:42 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=693</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/hyD7HJQ7m3c" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/hyD7HJQ7m3c"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2F2010%2F12%2F05%2Fcest-beau-un-reve-denfant-qui-se-donne-les-moyens%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/2010/12/05/cest-beau-un-reve-denfant-qui-se-donne-les-moyens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hermes fingerskate : joli coup de main !</title>
		<link>http://www.lindicible.com/blog/2010/12/05/hermes-fingerskate-joli-coup-de-main/</link>
		<comments>http://www.lindicible.com/blog/2010/12/05/hermes-fingerskate-joli-coup-de-main/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:26:25 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=691</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/wKVeSMDewnA" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/wKVeSMDewnA"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2F2010%2F12%2F05%2Fhermes-fingerskate-joli-coup-de-main%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/2010/12/05/hermes-fingerskate-joli-coup-de-main/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poker Ray, le retour de la vengeance du teaser qui tue</title>
		<link>http://www.lindicible.com/blog/2010/12/05/poker-ray-le-retour-de-la-vengeance-du-teaser-qui-tue/</link>
		<comments>http://www.lindicible.com/blog/2010/12/05/poker-ray-le-retour-de-la-vengeance-du-teaser-qui-tue/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:23:51 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=689</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/3Ki5OEmkhMY" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/3Ki5OEmkhMY"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2F2010%2F12%2F05%2Fpoker-ray-le-retour-de-la-vengeance-du-teaser-qui-tue%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/2010/12/05/poker-ray-le-retour-de-la-vengeance-du-teaser-qui-tue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>La nouvelle Skoda est une méchante voiture! Découvrez pourquoi&#8230;</title>
		<link>http://www.lindicible.com/blog/2010/12/05/la-nouvelle-skoda-est-une-mechante-voiture-decouvrez-pourquoi/</link>
		<comments>http://www.lindicible.com/blog/2010/12/05/la-nouvelle-skoda-est-une-mechante-voiture-decouvrez-pourquoi/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:21:28 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=687</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/aHzYLJEZ9cw" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/aHzYLJEZ9cw"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2F2010%2F12%2F05%2Fla-nouvelle-skoda-est-une-mechante-voiture-decouvrez-pourquoi%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/2010/12/05/la-nouvelle-skoda-est-une-mechante-voiture-decouvrez-pourquoi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diesel en mode coup de pied au cul !</title>
		<link>http://www.lindicible.com/blog/2010/12/05/diesel-en-mode-coup-de-pied-au-cul/</link>
		<comments>http://www.lindicible.com/blog/2010/12/05/diesel-en-mode-coup-de-pied-au-cul/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:19:13 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=685</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/EJ9LV8kuafs" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/EJ9LV8kuafs"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2F2010%2F12%2F05%2Fdiesel-en-mode-coup-de-pied-au-cul%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/2010/12/05/diesel-en-mode-coup-de-pied-au-cul/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C&#8217;est juste votre imagination&#8230; !</title>
		<link>http://www.lindicible.com/blog/2010/12/05/cest-juste-votre-imagination/</link>
		<comments>http://www.lindicible.com/blog/2010/12/05/cest-juste-votre-imagination/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:07:40 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=683</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/F50GCxzspCc" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/F50GCxzspCc"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2F2010%2F12%2F05%2Fcest-juste-votre-imagination%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/2010/12/05/cest-juste-votre-imagination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

