<?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>██▓▓▒▒░░ ɔɔ˙ǝɹ0ɔ˙ʍʍʍ ░░▒▒▓▓█ &#187; JavaScript</title>
	<atom:link href="http://blog.c0re.cc/category/source-code/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.c0re.cc</link>
	<description>Dreaming in digital, Talking in VoIP, Living in real time, Writing in C++, Java, C#.... Welcome to my world!</description>
	<lastBuildDate>Wed, 04 Jan 2012 17:31:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Flip text &#8211; Como escribir texto de cabeza ( codigo fuente en JavaScript )</title>
		<link>http://blog.c0re.cc/2009/07/my-source-code/javascript/flip-text-como-escribir-texto-de-cabeza-codigo-fuente-en-javascript.html</link>
		<comments>http://blog.c0re.cc/2009/07/my-source-code/javascript/flip-text-como-escribir-texto-de-cabeza-codigo-fuente-en-javascript.html#comments</comments>
		<pubDate>Tue, 14 Jul 2009 14:49:32 +0000</pubDate>
		<dc:creator>Антонио Тони</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.antoniobs.net/?p=765</guid>
		<description><![CDATA[En esta ocacion les dejo una forma facil de escribir un texto y ponerlo de cabeza. Esto lo pongo a peticion de varios de los visitantes que me lo solicitaron, disfrutenlo :p Descargar:Â text-flip.html Flip Text &#8211; source code =================== &#60;html&#62; Â &#60;head&#62; Â &#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34;&#62; Â &#60;title&#62;Text Flip Â &#60;/title&#62; &#60;style type=&#34;text/css&#34;&#62; Â textarea Â { Â Â font-family: Â &#34;Arial Unicode [...]]]></description>
			<content:encoded><![CDATA[<p>En esta ocacion les dejo una forma facil de escribir un texto y ponerlo de cabeza. Esto lo pongo a peticion de varios de los visitantes que me lo solicitaron, disfrutenlo :p</p>
<p>Descargar:Â <a href="http://blog.antoniobs.net/wp-content/uploads/text-flip.htm">text-flip.html</a></p>
<p>Flip Text &#8211; source code<br />
===================</p>
<pre class="brush: javascript">

&lt;html&gt;
Â &lt;head&gt;
Â &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;
Â &lt;title&gt;Text Flip
Â &lt;/title&gt;
&lt;style type=&quot;text/css&quot;&gt;
Â textarea
Â {
Â Â font-family: Â &quot;Arial Unicode MS&quot;, Batang;
Â Â color:Â Â Â orange;
Â Â background:Â Â #000;
Â }
Â body
Â {
Â Â color: Â Â Â #0f0;
Â Â font-family: Â tahoma;
Â Â font-size:Â Â 10pt;
Â Â background:Â Â #000;
Â }
&lt;/style&gt;
&lt;script language=&quot;JavaScript&quot;&gt;

function flipOriginalText()
{
Â var strFlipped = flipString(document.flipForm.txtOriginal.value.toLowerCase());
Â document.flipForm.txtFlipped.value = strFlipped;
}

function flipString(strText)
{
Â var lastPosition = strText.length - 1;
Â var strArray = new Array(strText.length)
Â for (var i = lastPosition; i &gt;= 0; --i)
Â {
Â  var c = strText.charAt(i)
Â  var r = flipTable[c]
Â  strArray[lastPosition - i] = r!=undefined ? r : c
Â }
Â return strArray.join(&#039;&#039;)
}

var flipTable =
{
Â a : &#039;u0250&#039;,
Â b : &#039;q&#039;,
Â c : &#039;u0254&#039;, //open o -- from pne
Â d : &#039;p&#039;,
Â e : &#039;u01DD&#039;,
Â f : &#039;u025F&#039;, //from pne
Â g : &#039;u0183&#039;,
Â h : &#039;u0265&#039;,
Â i : &#039;u0131&#039;, //from pne
Â j : &#039;u027E&#039;,
Â k : &#039;u029E&#039;,
Â //l : &#039;u0283&#039;,
Â m : &#039;u026F&#039;,
Â n : &#039;u&#039;,
Â r : &#039;u0279&#039;,
Â t : &#039;u0287&#039;,
Â v : &#039;u028C&#039;,
Â w : &#039;u028D&#039;,
Â y : &#039;u028E&#039;,
Â &#039;.&#039; : &#039;u02D9&#039;,
Â &#039;[&#039; : &#039;]&#039;,
Â &#039;(&#039; : &#039;)&#039;,
Â &#039;{&#039; : &#039;}&#039;,
Â &#039;?&#039; : &#039;u00BF&#039;, //from pne
Â &#039;!&#039; : &#039;u00A1&#039;,
Â &quot;&#039;&quot; : &#039;,&#039;,
Â &#039;&lt;&#039; : &#039;&gt;&#039;,
Â &#039;_&#039; : &#039;u203E&#039;,
Â &#039;;&#039; : &#039;u061B&#039;,
Â &#039;u203F&#039; : &#039;u2040&#039;,
Â &#039;u2045&#039; : &#039;u2046&#039;,
Â &#039;u2234&#039; : &#039;u2235&#039;
}

for (i in flipTable)
{
Â  flipTable[flipTable[i]] = i
}
&lt;/script&gt;&lt;/head&gt;&lt;body&gt;
&lt;h3&gt;Flip text &lt;/h3&gt;
&lt;form name=&quot;flipForm&quot;&gt;
Texto Original:
&lt;br&gt;
Â &lt;input value=&quot;Voltear texto&quot; onclick=&quot;flipOriginalText()&quot; type=&quot;button&quot;&gt;
Â &lt;br&gt;
Â &lt;textarea rows=&quot;10&quot; cols=&quot;70&quot; name=&quot;txtOriginal&quot; onkeyup=&quot;flipOriginalText()&quot;&gt;&lt;/textarea&gt;
&lt;br&gt;&lt;br&gt;
Texto volteado:
&lt;br&gt;
Â &lt;textarea rows=&quot;10&quot; cols=&quot;70&quot; name=&quot;txtFlipped&quot;&gt;&lt;/textarea&gt;
&lt;/form&gt;
&lt;p style=&quot;width: 300px;&quot;&gt;
&lt;small&gt;
Â Download from - - &gt; &lt;a href=&quot;http://www.antoniobs.net&quot;&gt;http//www.antoniobs.net&lt;/a&gt;Â &lt;br&gt;
Â Original idea - - &gt; &lt;a href=&quot;http://pne.livejournal.com/398399.html&gt;http://pne.livejournal.com/398399.html&lt;/a&gt;&lt;/small&gt;
&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;

Â </pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.c0re.cc/2009/07/my-source-code/javascript/flip-text-como-escribir-texto-de-cabeza-codigo-fuente-en-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

