<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-6711723083779015147</atom:id><lastBuildDate>Fri, 08 Nov 2024 15:38:21 +0000</lastBuildDate><category>CSS</category><category>CSS3</category><category>Diseño Web</category><category>HTML</category><title>DujaTuts</title><description>Tutoriales faciles y divertidos</description><link>http://dujatuts.blogspot.com/</link><managingEditor>noreply@blogger.com (Anonymous)</managingEditor><generator>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6711723083779015147.post-3253686647492091208</guid><pubDate>Sun, 01 Jun 2014 07:38:00 +0000</pubDate><atom:updated>2014-06-28T20:21:39.143-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS</category><category domain="http://www.blogger.com/atom/ns#">CSS3</category><category domain="http://www.blogger.com/atom/ns#">Diseño Web</category><category domain="http://www.blogger.com/atom/ns#">HTML</category><title>Creando un átomo animado solo con CSS</title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://googledrive.com/host/0B2hIuQM8xMhDVW1fTl9KbXAxWjA&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://googledrive.com/host/0B2hIuQM8xMhDVW1fTl9KbXAxWjA&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div dir=&quot;ltr&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div dir=&quot;ltr&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
En esta ocasión veremos como hacer un átomo solo con técnicas de CSS3, no explicare en detalle como se se hace cada cosa, solo diré que técnicas se utilizaron para obtener el resultado que vemos, quedara para su curiosidad si quieres saber en detalle el funcionamiento puesto que al final dejare el código fuente para que lo utilicen donde quieran.&lt;/div&gt;
&lt;/div&gt;
&lt;div dir=&quot;ltr&quot;&gt;
&lt;/div&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div dir=&quot;ltr&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Inicialmente veremos que es lo que queremos lograr y desde ahí partiremos, así que veamos que queremos hacer:&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div dir=&quot;ltr&quot;&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;350&quot; src=&quot;http://jsfiddle.net/duvanj/XnfjL/3/embedded/result/&quot; width=&quot;100%&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Primero que todo debemos tener clara la estructura del átomo y un funcionamiento básico, en este caso es un átomo de Litio con 3 electrones de valencia, es decir que debe tener 3 protones y 3 neutrones, ademas sabemos que las rutas que siguen los electrones alrededor del núcleo son llamadas orbitales. Ya con esto ahora si empecemos.&lt;/div&gt;
&lt;br /&gt;
&lt;h3&gt;
Paso 1: &amp;nbsp;Estructura HTML&lt;/h3&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Inicialmente crearemos un contenedor para el átomo, dentro de el crearemos tres elementos DIV uno para cada ruta de los electrones (orbitales), para cada ruta crearemos otro DIV dentro con la clase electrón, &amp;nbsp;ya con esto tenemos la parte bonita del átomo. Ahora al finalizar los orbitales debemos crear los elementos div necesarios para los neutrones y protones, en este caso deben ser 3 de cada uno, pero para casos prácticos solo crearemos dos de cada tipo.&lt;/div&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;300&quot; src=&quot;http://jsfiddle.net/duvanj/XnfjL/embedded/html/&quot; width=&quot;100%&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;br /&gt;Paso 2: Creando Orbitales&lt;/h3&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Hora crearemos los orbitales o rutas que seguirá cada electrón, para esto haremos uso del la propiedad de CSS3&amp;nbsp;&lt;a href=&quot;http://www.w3schools.com/cssref/css3_pr_transform.asp&quot; target=&quot;_blank&quot;&gt;transform&lt;/a&gt;&amp;nbsp;y la función&lt;b&gt; rotate(angulo)&lt;/b&gt; la cual nos da una rotación 2D al elemento según el angulo indicado. Ademas de esto debemos poner un &lt;b&gt;border -radius&lt;/b&gt; para hacer el orbital redondeado junto con un &lt;b&gt;border &lt;/b&gt;para identificar las fronteras del mismo.&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;300&quot; src=&quot;http://jsfiddle.net/duvanj/XnfjL/1/embedded/result,css,html/&quot; width=&quot;100%&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h3 style=&quot;text-align: justify;&quot;&gt;
Paso 3: Animando electrones&lt;/h3&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Inicialmente damos atributos a nuestros electrones y a las rutas que llevara cada uno, una cosa debe quedar clara, los orbitales son los&amp;nbsp;&lt;/span&gt;elipses&lt;span style=&quot;font-family: inherit;&quot;&gt;&amp;nbsp;creadas anteriormente, pero las rutas son las elementos que animaremos y&amp;nbsp;&lt;/span&gt;serán&lt;span style=&quot;font-family: inherit;&quot;&gt;&amp;nbsp;estos los que le den la&amp;nbsp;&lt;/span&gt;direccion&lt;span style=&quot;font-family: inherit;&quot;&gt;&amp;nbsp;al&amp;nbsp;&lt;/span&gt;átomo&lt;span style=&quot;font-family: inherit;&quot;&gt;. Para animar atributos es necesario utilizar la&amp;nbsp;regla&amp;nbsp;CSS @keyframes, la cual nos permite animar el elemento gradualmente en un tiempo desde un estilo a un estilo nuevo.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;br /&gt;&lt;/span&gt;Si queremos entender mejor el funcionamiento de esta regla podemos visitar los siguientes enlaces:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.w3schools.com/css/css3_animations.asp&quot; target=&quot;_blank&quot;&gt;Animaciones CSS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.w3schools.com/cssref/css3_pr_animation-keyframes.asp&quot; target=&quot;_blank&quot;&gt;CSS3 @keyframes Rule&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://css-tricks.com/snippets/css/keyframe-animation-syntax/&quot; target=&quot;_blank&quot;&gt;@keyframe animation syntax&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://developer.mozilla.org/es/docs/CSS/@keyframes&quot; target=&quot;_blank&quot;&gt;@keyframes&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Para hacer nuestra rotación debemos utilizar &lt;b&gt;@keyframes&lt;/b&gt; para animar los atributos&amp;nbsp;&amp;nbsp;&lt;b&gt;transform: rotate(0deg) &lt;/b&gt;hasta&amp;nbsp;&amp;nbsp;&lt;b&gt;transform: rotate(360deg),&lt;/b&gt; esto hará un movimiento rotatorio de nuestros electrones.&amp;nbsp;&lt;/span&gt;Una vez hecho esto ya podremos ver la&amp;nbsp;animación&amp;nbsp;funcionando.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;300&quot; src=&quot;http://jsfiddle.net/duvanj/XnfjL/2/embedded/css,html,result/&quot; width=&quot;100%&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
Ahora ya tenemos la estructura principal lo único que resta es la creación de los demás elementos (protones y neutrones) en lo cual no entrare en detalle. A continuación podemos ver el resultado de todo el trabajo con algunos extras como siempre.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;350&quot; src=&quot;http://jsfiddle.net/duvanj/XnfjL/3/embedded/result,html,css/&quot; width=&quot;100%&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Para terminar pueden encontrar el ejemplo en jsfiffle&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://jsfiddle.net/duvanj/XnfjL/3/&quot; target=&quot;_blank&quot;&gt;Demostración y código fuente&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Espero esto haya sido de su utilidad y les sirva de ayuda en sus proyectos web, no obstante si tienen dudas y/o sugerencias no olviden comentar.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Hasta la próxima&lt;/span&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://dujatuts.blogspot.com/2014/06/creando-un-atomo-animado-solo-con-css.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total><georss:featurename>Bucaramanga, Santander, Colombia</georss:featurename><georss:point>7.1133099999999994 -73.120468000000017</georss:point><georss:box>6.8612369999999991 -73.443191500000012 7.365383 -72.797744500000022</georss:box></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6711723083779015147.post-6746438301857010135</guid><pubDate>Mon, 12 May 2014 03:55:00 +0000</pubDate><atom:updated>2014-06-28T20:23:09.061-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS</category><category domain="http://www.blogger.com/atom/ns#">CSS3</category><category domain="http://www.blogger.com/atom/ns#">Diseño Web</category><category domain="http://www.blogger.com/atom/ns#">HTML</category><title>Creando animación circular de &amp;quot;cargando&amp;quot; con Css</title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;a href=&quot;https://www.blogger.com/null&quot; name=&quot;more&quot;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://googledrive.com/host/0B2hIuQM8xMhDVHVLalZWM3IxRkU&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: justify;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;286&quot; src=&quot;https://googledrive.com/host/0B2hIuQM8xMhDVHVLalZWM3IxRkU&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;span style=&quot;text-align: justify;&quot;&gt;La creación de animaciones utilizando CSS3 en lugar de jQuery &amp;nbsp;nos ofrece ventajas en cuanto a la velocidad de carga de nuestra paginas y la reducir el uso de recursos de la maquina de nuestro cliente para ejecutar la animación.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;text-align: justify;&quot;&gt;Veremos como obtener una animación de cargando como la que vemos a continuación &amp;nbsp;utilizando solamente CSS3.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: justify;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;text-align: justify;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;span style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;300&quot; src=&quot;http://jsfiddle.net/duvanj/2sbLs/5/embedded/result/&quot; width=&quot;100%&quot;&gt;&lt;/iframe&gt;
&lt;span style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;h3 style=&quot;text-align: justify;&quot;&gt;
&lt;/h3&gt;
&lt;h3 style=&quot;text-align: justify;&quot;&gt;
Paso 1: Estructura HTML&lt;/h3&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Inicialmente crearemos la estructura html para la &amp;nbsp;animación, necesitaremos un contenedor y dentro de el dos elementos uno para cada circulo como vemos a continuación:&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;200&quot; src=&quot;http://jsfiddle.net/duvanj/2sbLs/1/embedded/html/&quot; width=&quot;100%&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;h3&gt;
Paso 2: Creando medias circunferencias&lt;/h3&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
En este paso daremos los estilos necesarios a nuestro contenedor y a cada uno de los círculos, el contenedor para nuestro caso con la clase .spiner tendrá un alto definido de 74px. Ademas de esto debemos agregar un border-radius a los elementos .ball y .ball1, para que tomen forma de circulo.&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Las medias circunferencias las haremos dando bordes &amp;nbsp;a nuestros elementos .ball y .ball1, dos bordes no tendrán opacidad, los dos bordes restantes en cada elemento tendrá una opacidad de 0.3, de esta forma estamos logrando círculos de colores, medio opaco y medio traslucido como se puede ver en el siguiente ejemplo.&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;300&quot; src=&quot;http://jsfiddle.net/duvanj/2sbLs/2/embedded/css,html,result/&quot; width=&quot;100%&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;span style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Ya teniendo esto es necesario agregar las animaciones, como se vio en el código CSS anterior, ya se han añadido los tributos animation con las especificaciones de la animación, los cuales me indican que esta se llama spin y spinoff que dura un segundo (tiempo t 1s) ejecutándose con un tipo de animación linear y se repetirá infinitamente.&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;h3 style=&quot;text-align: justify;&quot;&gt;
&lt;/h3&gt;
&lt;h3 style=&quot;text-align: justify;&quot;&gt;
Paso 3: Animando elementos&lt;/h3&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Por el momento solo hemos nombrado nuestra animación, para animar atributos es necesario utilizar la regla CSS @keyframes, la cual nos permite animar el elemento gradualmente en un tiempo (tiempo t especificado anteriormente) desde un estilo a un estilo nuevo.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
Si queremos entender mejor el funcionamiento de esta regla podemos visitar los siguientes enlaces:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://www.w3schools.com/css/css3_animations.asp&quot; target=&quot;_blank&quot;&gt;Animaciones CSS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.w3schools.com/cssref/css3_pr_animation-keyframes.asp&quot; target=&quot;_blank&quot;&gt;CSS3 @keyframes Rule&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://css-tricks.com/snippets/css/keyframe-animation-syntax/&quot; target=&quot;_blank&quot;&gt;@keyframe animation syntax&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://developer.mozilla.org/es/docs/CSS/@keyframes&quot; target=&quot;_blank&quot;&gt;@keyframes&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Para hacer nuestra rotación debemos utilizar @keyframes para animar los atributos&amp;nbsp;&amp;nbsp;transform: rotate(0deg) hasta&amp;nbsp;&amp;nbsp;transform: rotate(360deg), esto hará un movimiento rotatorio de nuestros elementos.&amp;nbsp;&lt;/span&gt;Una vez hecho esto ya podremos ver la&amp;nbsp;animación&amp;nbsp;funcionando.&lt;br /&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;La forma de hacerlo podemos evidenciarla continuación.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;300&quot; src=&quot;http://jsfiddle.net/duvanj/2sbLs/3/embedded/css,html,result/&quot; width=&quot;100%&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Si observamos bien, las animaciones de los círculos giran en sentido contrario, esto sucede ya que una animación la iniciamos con rotación 0 hasta 360 y la otra desde 360 a 0, logrando un efecto inverso en ambas circunferencias.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;h3&gt;
&lt;/h3&gt;
&lt;h3&gt;
Paso 4: Funcionalidades extra&lt;/h3&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Como ya tenemos realizada la animación, y para ampliar su utilidad en nuestra web, debemos agregar algunas funcionalidades extra, en este caso agregaremos la posibilitad de pausar la animación. para esto agregaremos la clase .stop la cual sera aplicada a nuestro contenedor .spiner y aplicaremos el estilo&amp;nbsp;animation-play-state: paused; logrando el efecto deseado.&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;El resultado final de todo este tutorial podemos verlo continuación:&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;300&quot; src=&quot;http://jsfiddle.net/duvanj/2sbLs/5/embedded/result,html,css,js/&quot; width=&quot;100%&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Para finalizar &amp;nbsp;también podemos encontrar este ejemplo en :&lt;/span&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-family: inherit;&quot;&gt;&amp;nbsp;&lt;a href=&quot;https://gist.github.com/duvanjamid/cf9e01f0ae9ec4897f43&quot; target=&quot;_blank&quot;&gt;Github:gist&lt;/a&gt;&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li style=&quot;text-align: justify;&quot;&gt;&lt;a href=&quot;http://jsfiddle.net/duvanj/2sbLs/5/&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;font-family: inherit;&quot;&gt;Jsfiddle&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Espero esto haya sido de su utilidad y les sirva de ayuda en sus proyectos web, no obstante si tienen dudas y/o sugerencias no olviden comentar.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;span style=&quot;font-family: inherit;&quot;&gt;Hasta la próxima&lt;/span&gt;.&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</description><link>http://dujatuts.blogspot.com/2014/05/crear-animacion-circular-de-cargando.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item></channel></rss>