<?xml version="1.0" encoding="utf-8"?> 
<rss version="2.0">

<channel>

<title>Блог Артемия Аверина, заметки с тегом: html</title>
<link>http://blog.averin.pro/?go=tags/html/</link>
<description>&lt;p&gt;Все что может потребоваться... @averin.pro&lt;/p&gt;
&lt;!-- Yandex.Metrika counter --&gt;&lt;script type="text/javascript" &gt;
   (function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
   m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
   (window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");

   ym(52913320, "init", {
        clickmap:true,
        trackLinks:true,
        accurateTrackBounce:true,
        webvisor:true
   });
&lt;/script&gt;
&lt;p&gt;&lt;noscript&gt;&lt;/p&gt;
&lt;div&gt;&lt;p&gt;&lt;img src="https://mc.yandex.ru/watch/52913320" style="position:absolute; left:-9999px;" alt="" /&gt;&lt;/p&gt;
&lt;/div&gt;&lt;p&gt;&lt;/noscript&gt;&lt;/p&gt;
&lt;!-- /Yandex.Metrika counter --&gt;</description>
<generator>E2 (v3118; Aegea)</generator>

<item><title>Движущиеся шары на странице</title><guid isPermaLink="true">http://blog.averin.pro/?go=all/dvizhuschiesya-shary-na-stranice/</guid><link>http://blog.averin.pro/?go=all/dvizhuschiesya-shary-na-stranice/</link><comments>http://blog.averin.pro/?go=all/dvizhuschiesya-shary-na-stranice/</comments><description>&lt;p&gt;Движущиеся шары на странице, очень приятные. Можно реализовать сколько угодно штук&lt;/p&gt;
&lt;pre class="e2-text-code"&gt;&lt;code&gt;&amp;lt;div class=&amp;quot;balls&amp;quot;&amp;gt;
	&amp;lt;div class=&amp;quot;balls_item balls_small&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;
	&amp;lt;div class=&amp;quot;balls_item balls_medium&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;
	&amp;lt;div class=&amp;quot;balls_item balls_big&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;style&amp;gt;
	.balls .balls_item {
		background-color: rgba(255,255,255,0.2);
		border-radius: 50%;
		display: block;
		position: absolute;
		z-index: 0;
		margin: auto;
	}
	.balls .balls_item.balls_small {
		width: 67px;
		height: 67px;
		animation: CircleLeft 60s linear infinite;
	}
	.balls .balls_item.balls_medium {
		width: 218px;
		height: 218px;
		animation: CircleRight 70s linear infinite;
	}
	.balls .balls_item.balls_big {
		width: 350px;
		height: 350px;
		animation: CircleLeft 85s linear infinite;
	}
	.balls.stop_animation .balls_item {
		animation-play-state: paused;
	}
	@keyframes CircleLeft {
		from {
			transform: rotate(0deg) translate(300px) rotate(0deg);
		}
		to {
			transform: rotate(360deg) translate(300px) rotate(-360deg);
		}
	}
	@keyframes CircleRight {
		from {
			transform: rotate(360deg) translate(200px) rotate(-360deg);
		}
		to {
			transform: rotate(0deg) translate(200px) rotate(0deg);
		}
	}
	&amp;lt;/style&amp;gt;&lt;/code&gt;&lt;/pre&gt;</description><pubDate>Wed, 27 Nov 2019 23:18:06 +0200</pubDate></item>
</channel>

</rss>