<?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>2WebFacil &#187; widget</title>
	<atom:link href="http://2webfacil.com/tag/widget/feed/" rel="self" type="application/rss+xml" />
	<link>http://2webfacil.com</link>
	<description>Tips, tutoriales, ejemplos y descargas para personalizar tu web</description>
	<lastBuildDate>Sun, 22 Aug 2010 22:27:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Agregar Twitter en tu Web</title>
		<link>http://2webfacil.com/agregar-twitter-en-tu-web/</link>
		<comments>http://2webfacil.com/agregar-twitter-en-tu-web/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 04:49:03 +0000</pubDate>
		<dc:creator>2webfacil</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://2webfacil.com/agregar-twitter-en-tu-web-2/</guid>
		<description><![CDATA[<p>Twitter es el sistema de micro-blogging mas popular hoy en día, es por que podemos comunicar a nuestros usuarios, visitantes o clientes las ultimas noticias, promociones o alertas de forma sencilla y rápida. Si ya están utilizando Twitter entonces esta ves veremos la forma en como mostrar los ultimos tweets en nuestro web.</p>
<p><strong>Creando el widget</strong></p>
<p>Para crear el widget primero accedemos a Twitter, luego en&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Twitter es el sistema de micro-blogging mas popular hoy en día, es por que podemos comunicar a nuestros usuarios, visitantes o clientes las ultimas noticias, promociones o alertas de forma sencilla y rápida. Si ya están utilizando Twitter entonces esta ves veremos la forma en como mostrar los ultimos tweets en nuestro web.</p>
<p><strong>Creando el widget</strong></p>
<p>Para crear el widget primero accedemos a Twitter, luego en la parte inferior seguimos el link <em>Goodies</em> luego la opción <em>Widgets</em>. Luego Seleccionamos la opción <em>Widgets for My Website</em>, finalmente seleccionamos la opción <em>Profile Widget</em>.</p>
<p>Ahora tendremos una pantalla donde podremos configurar las características del widget que deseamos:</p>
<ul>
<li><strong>Settings</strong>: permite indicar el nombre de usuario de twitter para mostrar los tweets.</li>
<li><strong>Preferences</strong>: para seleccionar la cantidad de tweets a mostrar y si vamos a a mostrar la fecha y los hashtags.</li>
<li><strong>Appearance</strong>: En este tab se seleccionan los colores de los textos y fondos del widget.</li>
<li><strong>Dimensions</strong>: podemos definir las dimensiones del widget o podemos dejar que se asigne automaticamente.</li>
</ul>
<p>Configuramos el widget según nuestras necesidades dando la apariencia de nuestro web o blog para que se integre correctamente. Una vez generado el widget hacemos click en el botón <strong>Finish &#038; Grab Code</strong> con lo cual obtendrás un código javascript que podrás incluir en tu web:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://widgets.twimg.com/j/2/widget.js&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">script</span>&gt;</span>
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 5,
  interval: 6000,
  width: 250,
  height: 300,
  theme: {
    shell: {
      background: '#89897c',
      color: '#ffffff'
    },
    tweets: {
      background: '#d8d8c7',
      color: '#55554e',
      links: '#899800'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('2webfacil').start();
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">script</span>&gt;</span></pre></td></tr></table></div>

<p>En nuestro hemos seleccionado los colores que tenemos el el blog, hemos seleccionado 5 tweets a mostrar, con lo cual obtenemos el siguiente resultado.</p>
<p>
<script src="http://widgets.twimg.com/j/2/widget.js"></script><br />
<script>
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 5,
  interval: 6000,
  width: 250,
  height: 300,
  theme: {
    shell: {
      background: '#89897c',
      color: '#ffffff'
    },
    tweets: {
      background: '#d8d8c7',
      color: '#55554e',
      links: '#899800'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('2webfacil').start();
</script>
</p>
<p>&nbsp;<br />&nbsp;<br />
Hemos obtenido un widget muy vistoso para nuestro web, con esto mostraremos a nuestros visitantes los ultimos tweets de nuestra cuenta y todo ello sin necesidad de tener conocimientos de programación.</p>
<p><a href="http://twitter.com/share?url=http%3A%2F%2F2webfacil.com%2Fagregar-twitter-en-tu-web%2F&amp;lang=es&amp;via=2webfacil&amp;text=Agregar+Twitter+en+tu+Web" class="twitter-share-button">Tweet</a></p>
	Tags: <a href="http://2webfacil.com/tag/blog/" title="blog" rel="tag">blog</a>, <a href="http://2webfacil.com/tag/twitter/" title="Twitter" rel="tag">Twitter</a>, <a href="http://2webfacil.com/tag/widget/" title="widget" rel="tag">widget</a><br />
]]></content:encoded>
			<wfw:commentRss>http://2webfacil.com/agregar-twitter-en-tu-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
