<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
			<channel>
			<title>Как реализовать интересный логотип сайта на основе fontawesome и animate.css / Вопросы, проблемы и их решения / Alto CMS</title>
			<link>http://79.174.14.219/comments/1903/</link>
			<description><![CDATA[Народ, есть сайт на altocms, правда там его автор много чего передел и заточил под себя. Мне понравилась реализация вращающего]]></description>
			<language>ru</language>
			<managingEditor>noreply@altocms.ru</managingEditor>
			<webMaster>noreply@altocms.ru</webMaster>
			<generator>Alto CMS v.1.5.0b1</generator>
							<item>
					<title>Как реализовать интересный логотип сайта на основе fontawesome и animate.css (comment #29585)</title>
					<guid isPermaLink="true">http://79.174.14.219/t/1903/#comment29585</guid>
					<link>http://79.174.14.219/1903.html#comment29585</link>
					<author>ptz2007@gmail.com</author>
					<description><![CDATA[Как?]]></description>
					<pubDate>Thu, 29 Mar 2018 03:31:06 +0300</pubDate>
									</item>
							<item>
					<title>Как реализовать интересный логотип сайта на основе fontawesome и animate.css (comment #29586)</title>
					<guid isPermaLink="true">http://79.174.14.219/t/1903/#comment29586</guid>
					<link>http://79.174.14.219/1903.html#comment29586</link>
					<author>ptz2007@gmail.com</author>
					<description><![CDATA[Как? Мне кажется что Sersar мне что то не договорил.... Хотя бы то, что нужно подключить сам шрифт font-awesome.min.css и наверняка что то еще... Светлые головы отзовитесь, буду благодарен за любую помощь.]]></description>
					<pubDate>Thu, 29 Mar 2018 03:38:47 +0300</pubDate>
									</item>
							<item>
					<title>Как реализовать интересный логотип сайта на основе fontawesome и animate.css (comment #29592)</title>
					<guid isPermaLink="true">http://79.174.14.219/t/1903/#comment29592</guid>
					<link>http://79.174.14.219/1903.html#comment29592</link>
					<author>j.j.lefebvre@yandex.ru</author>
					<description><![CDATA[animateCss где у вас описан?<br>
Внимательно прочитать надо секцию Usage на <a href="https://github.com/daneden/animate.css" rel="nofollow">https://github.com/daneden/animate.css</a><br>
<br>
где у вас вот такой код?<br>
<pre class="prettyprint"><code>&#34;$.fn.extend({animateCss:function(animationName,callback){var animationEnd=(function(el){var animations={animation:&#39;anima
tionend&#39;,OAnimation:&#39;oAnimationEnd&#39;,MozAnimation:&#39;mozAnimationEnd&#39;,WebkitAnimation:&#39;webkitAnimationEnd&#39;,};for(var t in animations){if(el.style
[t]!==undefined){return animations[t];}}})(document.createElement(&#39;div&#39;));this.addClass(&#39;animated &#39;+animationName).one(animationEnd,function()
{$(this).removeClass(&#39;animated &#39;+animationName);if(typeof callback===&#39;function&#39;)callback();});return this;}});jQuery(document).ready(function(
){setInterval(function(){$(&#39;.site-header-title i&#39;).animateCss(&#39;flip&#39;,function(){});},5000);});&#34;</code></pre>]]></description>
					<pubDate>Thu, 29 Mar 2018 11:12:30 +0300</pubDate>
									</item>
							<item>
					<title>Как реализовать интересный логотип сайта на основе fontawesome и animate.css (comment #29598)</title>
					<guid isPermaLink="true">http://79.174.14.219/t/1903/#comment29598</guid>
					<link>http://79.174.14.219/1903.html#comment29598</link>
					<author>ptz2007@gmail.com</author>
					<description><![CDATA[Было только вот это в подключаемом js файле...<br>
<pre class="prettyprint"><code>jQuery(document).ready(function(
){setInterval(function(){$(&#39;.site-header-title i&#39;).animateCss(&#39;flip&#39;,function(){});},5000);});&#34;</code></pre><br>
Дописал сверху остальное и все заработало. Спасибо огромное за наводку.]]></description>
					<pubDate>Thu, 29 Mar 2018 14:04:32 +0300</pubDate>
									</item>
							<item>
					<title>Как реализовать интересный логотип сайта на основе fontawesome и animate.css (comment #29597)</title>
					<guid isPermaLink="true">http://79.174.14.219/t/1903/#comment29597</guid>
					<link>http://79.174.14.219/1903.html#comment29597</link>
					<author>j.j.lefebvre@yandex.ru</author>
					<description><![CDATA[<pre class="prettyprint"><code>
cat index.html


&#60;head&#62;
    &#60;meta charset=&#34;utf-8&#34;&#62;
    &#60;meta http-equiv=&#34;X-UA-Compatible&#34; content=&#34;IE=edge,chrome=1&#34;&#62;
&#60;link type=&#34;text/css&#34; rel=&#34;stylesheet&#34; href=&#34;animate.css-master/animate.css&#34;/&#62;
&#60;link type=&#34;text/css&#34; rel=&#34;stylesheet&#34; href=&#34;font-awesome-4.7.0/css/font-awesome.css&#34;/&#62;
&#60;/head&#62;
&#60;body&#34;&#62;

&#60;div&#62;
    &#60;a  class=&#34;site-header-title&#34;href=&#34;http://liverp.loc/&#34;&#62;Живи &#60;i class=&#34;fa fa-heartbeat&#34;&#62;&#60;/i&#62; RolePlay&#60;/a&#62; 
&#60;/div&#62;

&#60;script type=&#34;text/javascript&#34; src=&#34;jquery-3.3.1.js&#34;&#62;&#60;/script&#62;
&#60;script type=&#34;text/javascript&#34; src=&#34;jacomo.js&#34;&#62;&#60;/script&#62;

&#60;/body&#62;
&#60;/html&#62;




cat jacomo.js 


$.fn.extend({animateCss:function(animationName,callback){var animationEnd=(function(el){var animations={animation:&#39;animationend&#39;,OAnimation:&#39;oAnimationEnd&#39;,MozAnimation:&#39;mozAnimationEnd&#39;,WebkitAnimation:&#39;webkitAnimationEnd&#39;,};for(var t in animations){if(el.style[t]!==undefined){return animations[t];}}})(document.createElement(&#39;div&#39;));this.addClass(&#39;animated &#39;+animationName).one(animationEnd,function(){$(this).removeClass(&#39;animated &#39;+animationName);if(typeof callback===&#39;function&#39;)callback();});return this;}});jQuery(document).ready(function(){setInterval(function(){$(&#39;.site-header-title i&#39;).animateCss(&#39;flip&#39;,function(){});},5000);});
</code></pre>]]></description>
					<pubDate>Thu, 29 Mar 2018 13:28:27 +0300</pubDate>
									</item>
							<item>
					<title>Как реализовать интересный логотип сайта на основе fontawesome и animate.css (comment #29599)</title>
					<guid isPermaLink="true">http://79.174.14.219/t/1903/#comment29599</guid>
					<link>http://79.174.14.219/1903.html#comment29599</link>
					<author>ptz2007@gmail.com</author>
					<description><![CDATA[С файлами тоже все получилось, спасибо огромное!]]></description>
					<pubDate>Thu, 29 Mar 2018 14:19:56 +0300</pubDate>
									</item>
							<item>
					<title>Как реализовать интересный логотип сайта на основе fontawesome и animate.css (comment #29589)</title>
					<guid isPermaLink="true">http://79.174.14.219/t/1903/#comment29589</guid>
					<link>http://79.174.14.219/1903.html#comment29589</link>
					<author>finitumus@gmail.com</author>
					<description><![CDATA[А сам скрипт запускается? Функция setInterval в принципе срабатывает? <br>
Проверь первым делом это, повесь туда alert или вывод чего-нибудь в консоль.]]></description>
					<pubDate>Thu, 29 Mar 2018 11:00:37 +0300</pubDate>
									</item>
					</channel>
	</rss>
