<?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>Comentarios en: Crear un hover animado con jQuery</title>
	<atom:link href="http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/</link>
	<description>Desarrollo web, Wordpress, y alguna cosilla más</description>
	<lastBuildDate>Sun, 12 Feb 2012 12:01:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Por: mat</title>
		<link>http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/#comment-60068</link>
		<dc:creator>mat</dc:creator>
		<pubDate>Mon, 21 Sep 2009 20:22:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=6446#comment-60068</guid>
		<description>Anieto!
Me encuentro en un embrollo justametne con &quot;hover&quot;, di vueltas por tutoriales, di vuelta el código, pero no consigo que el efecto ande únicamente cuando se posa el mouse encima.

Este es el codigo:

		$(document).ready(function() {
			
			spectrum();
			
			function spectrum(){
				var hue = &#039;rgb(&#039; + (Math.floor(Math.random() * 256)) + &#039;,&#039; + (Math.floor(Math.random() * 256)) + &#039;,&#039; + (Math.floor(Math.random() * 256)) + &#039;)&#039;;
				$(&#039;#welcome&#039;).animate( { color: hue}, 1000);
				spectrum(); 
		   	}
			
		});	

Se agradece una mano!

P.D:  Este codigo viene del plugin &quot;jQuery Color Animations&quot;</description>
		<content:encoded><![CDATA[<p>Anieto!<br />
Me encuentro en un embrollo justametne con &#8220;hover&#8221;, di vueltas por tutoriales, di vuelta el código, pero no consigo que el efecto ande únicamente cuando se posa el mouse encima.</p>
<p>Este es el codigo:</p>
<p>		$(document).ready(function() {</p>
<p>			spectrum();</p>
<p>			function spectrum(){<br />
				var hue = &#8216;rgb(&#8216; + (Math.floor(Math.random() * 256)) + &#8216;,&#8217; + (Math.floor(Math.random() * 256)) + &#8216;,&#8217; + (Math.floor(Math.random() * 256)) + &#8216;)&#8217;;<br />
				$(&#8216;#welcome&#8217;).animate( { color: hue}, 1000);<br />
				spectrum();<br />
		   	}</p>
<p>		});	</p>
<p>Se agradece una mano!</p>
<p>P.D:  Este codigo viene del plugin &#8220;jQuery Color Animations&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Gisela</title>
		<link>http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/#comment-59143</link>
		<dc:creator>Gisela</dc:creator>
		<pubDate>Fri, 28 Aug 2009 21:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=6446#comment-59143</guid>
		<description>hola ya lo modifique gracias, ahora alguien me podria indicar como insertar el html en una plantilla html. gracias.</description>
		<content:encoded><![CDATA[<p>hola ya lo modifique gracias, ahora alguien me podria indicar como insertar el html en una plantilla html. gracias.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Gisela</title>
		<link>http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/#comment-59121</link>
		<dc:creator>Gisela</dc:creator>
		<pubDate>Fri, 28 Aug 2009 06:09:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=6446#comment-59121</guid>
		<description>Hola soy nueva en esto estoy tratando de añadir este efecto a 4 imagenes pero solo aparecen las imagenes sin ningún efecto. Alguien me pudeindicar que esta mal. he creado tres archivos 1 html, 1 css y 1 js
*******************************************************************
TYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.1//EN&quot; &quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&quot;&gt;

	
	Documento sin t&#237;tulo
		
		
	
	
	
	
	   &lt;a href=&quot;/&quot; rel=&quot;nofollow&quot;&gt; no sale el efecto mañana continuo&lt;/a&gt;
	   &lt;a href=&quot;/&quot; rel=&quot;nofollow&quot;&gt; Text.&lt;/a&gt;
	
	
	   &lt;a href=&quot;/&quot; rel=&quot;nofollow&quot;&gt; Text&lt;/a&gt;
	   &lt;a href=&quot;/&quot; rel=&quot;nofollow&quot;&gt; Text.&lt;/a&gt;
	
	
	
********************************************************************************
hover_block.js

// JavaScript Document
$(function() {
$(’ul.hover_block li’).hover(function(){
$(this).find(’img’).animate({top:’182px’},{queue:false,duration:500});
}, function(){
$(this).find(’img’).animate({top:’0px’},{queue:false,duration:500});
});
$(’ul.hover_block2 li’).hover(function(){
$(this).find(’img’).animate({left:’300px’},{queue:false,duration:500});
}, function(){
$(this).find(’img’).animate({left:’0px’},{queue:false,duration:500});
});

});
*******************************************************************************************
hover_block.css

ul.hover_block li{
list-style:none;
float:left;
background: #fff;
padding: 10px;
width:300px; position: relative;
margin-right: 20px; }

ul.hover_block li a {
display: block;
position: relative;
overflow: hidden;
height: 150px;
width: 268px;
padding: 16px;
color: #000;
font: 1.6em/1.3 Helvetica, Arial, sans-serif;
}
ul.hover_block li a { text-decoration: none; }
ul.hover_block li img {
position: absolute;
top: 0;
left: 0;
border: 0;
height: 140px;
width: 258px;
}

Gracias por su ayuda y correciones</description>
		<content:encoded><![CDATA[<p>Hola soy nueva en esto estoy tratando de añadir este efecto a 4 imagenes pero solo aparecen las imagenes sin ningún efecto. Alguien me pudeindicar que esta mal. he creado tres archivos 1 html, 1 css y 1 js<br />
*******************************************************************<br />
TYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.1//EN&#8221; &#8220;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&#8221;&gt;</p>
<p>	Documento sin t&iacute;tulo</p>
<p>	   <a href="/" rel="nofollow"> no sale el efecto mañana continuo</a><br />
	   <a href="/" rel="nofollow"> Text.</a></p>
<p>	   <a href="/" rel="nofollow"> Text</a><br />
	   <a href="/" rel="nofollow"> Text.</a></p>
<p>********************************************************************************<br />
hover_block.js</p>
<p>// JavaScript Document<br />
$(function() {<br />
$(’ul.hover_block li’).hover(function(){<br />
$(this).find(’img’).animate({top:’182px’},{queue:false,duration:500});<br />
}, function(){<br />
$(this).find(’img’).animate({top:’0px’},{queue:false,duration:500});<br />
});<br />
$(’ul.hover_block2 li’).hover(function(){<br />
$(this).find(’img’).animate({left:’300px’},{queue:false,duration:500});<br />
}, function(){<br />
$(this).find(’img’).animate({left:’0px’},{queue:false,duration:500});<br />
});</p>
<p>});<br />
*******************************************************************************************<br />
hover_block.css</p>
<p>ul.hover_block li{<br />
list-style:none;<br />
float:left;<br />
background: #fff;<br />
padding: 10px;<br />
width:300px; position: relative;<br />
margin-right: 20px; }</p>
<p>ul.hover_block li a {<br />
display: block;<br />
position: relative;<br />
overflow: hidden;<br />
height: 150px;<br />
width: 268px;<br />
padding: 16px;<br />
color: #000;<br />
font: 1.6em/1.3 Helvetica, Arial, sans-serif;<br />
}<br />
ul.hover_block li a { text-decoration: none; }<br />
ul.hover_block li img {<br />
position: absolute;<br />
top: 0;<br />
left: 0;<br />
border: 0;<br />
height: 140px;<br />
width: 258px;<br />
}</p>
<p>Gracias por su ayuda y correciones</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Gisela</title>
		<link>http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/#comment-59120</link>
		<dc:creator>Gisela</dc:creator>
		<pubDate>Fri, 28 Aug 2009 04:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=6446#comment-59120</guid>
		<description>hola sou nueva en esto no me funciona he creado una rchivo js un archivo css y un archivo html pero nada aparecen las cuatro fotos pero sin ningun efcto por favor expliquenm detalladamete como crear el archivo html

gracias</description>
		<content:encoded><![CDATA[<p>hola sou nueva en esto no me funciona he creado una rchivo js un archivo css y un archivo html pero nada aparecen las cuatro fotos pero sin ningun efcto por favor expliquenm detalladamete como crear el archivo html</p>
<p>gracias</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Añade un efecto hover animado con jQuery &#124; Sumolari.com</title>
		<link>http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/#comment-51123</link>
		<dc:creator>Añade un efecto hover animado con jQuery &#124; Sumolari.com</dc:creator>
		<pubDate>Sat, 04 Oct 2008 16:05:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=6446#comment-51123</guid>
		<description>[...] Vía Anieto2k. [...]</description>
		<content:encoded><![CDATA[<p>[...] Vía Anieto2k. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Ruben</title>
		<link>http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/#comment-51114</link>
		<dc:creator>Ruben</dc:creator>
		<pubDate>Sat, 04 Oct 2008 09:15:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=6446#comment-51114</guid>
		<description>He probado el script con Safari y no me funciona, ni siquiera hace nada, lo que le resta puntuacion, le doy un 6 ;-)</description>
		<content:encoded><![CDATA[<p>He probado el script con Safari y no me funciona, ni siquiera hace nada, lo que le resta puntuacion, le doy un 6 <img src='http://www.anieto2k.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Argh</title>
		<link>http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/#comment-51094</link>
		<dc:creator>Argh</dc:creator>
		<pubDate>Fri, 03 Oct 2008 14:35:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=6446#comment-51094</guid>
		<description>&quot;En este código vemos, que estamos cogiendo los elementos del listado&quot;

El verbo, no se separa, del reto de la, frase, con comas. Es muy incorrecto.</description>
		<content:encoded><![CDATA[<p>&#8220;En este código vemos, que estamos cogiendo los elementos del listado&#8221;</p>
<p>El verbo, no se separa, del reto de la, frase, con comas. Es muy incorrecto.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Marcelo</title>
		<link>http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/#comment-51093</link>
		<dc:creator>Marcelo</dc:creator>
		<pubDate>Fri, 03 Oct 2008 14:34:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=6446#comment-51093</guid>
		<description>&lt;!--GREADER--&gt;Wow! Esta bárbaro! lo que se puede hacer con jQuery! Increible.</description>
		<content:encoded><![CDATA[<p><img src="http://www.anieto2k.com/greader.jpg" alt="CommentFeed" />Wow! Esta bárbaro! lo que se puede hacer con jQuery! Increible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Janckos</title>
		<link>http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/#comment-51090</link>
		<dc:creator>Janckos</dc:creator>
		<pubDate>Fri, 03 Oct 2008 12:25:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=6446#comment-51090</guid>
		<description>Lo guardare en mis bookmark tools para usarlo pronto , esta genial el efecto!</description>
		<content:encoded><![CDATA[<p>Lo guardare en mis bookmark tools para usarlo pronto , esta genial el efecto!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Son</title>
		<link>http://www.anieto2k.com/2008/10/02/crear-un-hover-animado-con-jquery/#comment-51089</link>
		<dc:creator>Son</dc:creator>
		<pubDate>Fri, 03 Oct 2008 11:34:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=6446#comment-51089</guid>
		<description>He llegado un poco por casualidad y me parece que tiene cosas muy interesantes que puedo aprender aunque a primera vista algunas me parecen complicadas</description>
		<content:encoded><![CDATA[<p>He llegado un poco por casualidad y me parece que tiene cosas muy interesantes que puedo aprender aunque a primera vista algunas me parecen complicadas</p>
]]></content:encoded>
	</item>
</channel>
</rss>

