<?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>ARMENIUM Portfolio</title>
	<atom:link href="http://www.armenium.ru/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.armenium.ru</link>
	<description>Мои работы и не только...</description>
	<lastBuildDate>Fri, 02 Dec 2011 07:07:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Метод Виолы-Джонса (Viola-Jones) как основа для распознавания лиц</title>
		<link>http://www.armenium.ru/viola-jones-face-dedection-method/</link>
		<comments>http://www.armenium.ru/viola-jones-face-dedection-method/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 06:59:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Программирование]]></category>
		<category><![CDATA[AdaBoost]]></category>
		<category><![CDATA[Viola Jones]]></category>
		<category><![CDATA[алгоритм]]></category>
		<category><![CDATA[бустинг]]></category>
		<category><![CDATA[Виола]]></category>
		<category><![CDATA[Джонс]]></category>
		<category><![CDATA[классификация]]></category>
		<category><![CDATA[машинное обучение]]></category>
		<category><![CDATA[метод]]></category>
		<category><![CDATA[распознавание изображений]]></category>
		<category><![CDATA[распознавание лиц]]></category>
		<category><![CDATA[распознавание образов]]></category>
		<category><![CDATA[распознавание объектов]]></category>

		<guid isPermaLink="false">http://www.armenium.ru/?p=202</guid>
		<description><![CDATA[Хотя метод был разработан и представлен в 2001 году Полом Виолой и Майклом Джонсом [1, 2], он до сих пор на момент написания моего поста является основополагающим для поиска объектов на изображении в реальном времени [2]. По следам топика хабраюзера Indalo о данном методе, я попытался сам написать программу, которая распознает эмоцию на моём лице, [...]]]></description>
			<content:encoded><![CDATA[<p>Хотя метод был разработан и представлен в 2001 году Полом Виолой и Майклом Джонсом [1, 2], он до сих пор на момент написания моего поста является основополагающим для поиска <span id="more-202"></span>объектов на изображении в реальном времени [2]. По следам <a href="http://habrahabr.ru/blogs/artificial_intelligence/67937/">топика</a> хабраюзера <a href="http://habrahabr.ru/users/indalo/">Indalo</a> о данном методе, я попытался сам написать программу, которая распознает эмоцию на моём лице, но, к сожалению, не увидел на Хабре недостающей теории и описания работы некоторых алгоритмов, кроме указания их названий. Я решил собрать всё воедино, в одном месте. Сразу скажу, что свою программу успешно написал по данным алгоритмам. Как получилось рассказать о них ниже, решать Вам, уважаемые Хабрачитатели!</p>
<p>Подробнее на <a href="http://habrahabr.ru/blogs/algorithm/133826/" target="_blank">Хабре</a></p>
<p><a name="habracut"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.armenium.ru/viola-jones-face-dedection-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Blurred Text-Shadow in IE — Part I</title>
		<link>http://www.armenium.ru/css-blurred-text-shadow-in-ie-part-1/</link>
		<comments>http://www.armenium.ru/css-blurred-text-shadow-in-ie-part-1/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 20:57:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Веб-программирование]]></category>
		<category><![CDATA[blurred text-shadow]]></category>
		<category><![CDATA[Cross-Browser CSS3 text-shadow]]></category>
		<category><![CDATA[Cross-Browser text-shadow]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[CSS3 blurred text-shadow]]></category>
		<category><![CDATA[CSS3 text-shadow]]></category>
		<category><![CDATA[DropShadow]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[ie filters]]></category>
		<category><![CDATA[IE Visual Filters]]></category>
		<category><![CDATA[IE9]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[text-shadow]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Visual Filters]]></category>

		<guid isPermaLink="false">http://www.armenium.ru/?p=184</guid>
		<description><![CDATA[Step by Step Text-Shadowing in IE9 After you become familiar with the above two articles, implementing text-shadow in IE9 becomes a two-step process. For this tutorial, let&#8217;s assume the following HTML: &#60;div id=&#34;intro&#34; class=&#34;alignLeft&#34;&#62; &#60;p data-innertext=&#34;Blurred Text-Shadow in IE9 Without JavaScript&#34;&#62; Blurred Text-Shadow in IE9 Without JavaScript &#60;/p&#62; &#60;/div&#62; (Note the data-innertext attribute in the [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<h2>Step by Step Text-Shadowing in IE9</h2>
<p>After you become familiar with the above two articles, implementing text-shadow in IE9 becomes a two-step process.<span id="more-184"></span></p>
<p>For this tutorial, let&#8217;s assume the following HTML:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div id=&quot;intro&quot; class=&quot;alignLeft&quot;&gt;
  &lt;p data-innertext=&quot;Blurred Text-Shadow in IE9 Without JavaScript&quot;&gt;
    Blurred Text-Shadow in IE9 Without JavaScript
  &lt;/p&gt;
&lt;/div&gt;</pre></div></div>

<p>(Note the <code>data-innertext</code> attribute in the element we want to add the text-shadow to.  This must contain exactly the same text that the element itself contains. We&#8217;ll explain why we need this later on).</p>
<p>Let&#8217;s also assume we want a gray text-shadow with both an x- and y-offset of 3 pixels as well as a blur radius of 3 pixels:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#intro</span> p <span style="color: #00AA00;">&#123;</span>
     <span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #cc00cc;">#cccccc</span><span style="color: #00AA00;">;</span>
     <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">230px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Let&#8217;s look at the result so far:</p>
<table class="dataTable">
<thead>
<tr>
<th>Firefox screenshot</th>
<th>IE screenshot</th>
</tr>
</thead>
<tbody>
<tr>
<td><img title="Firefox screenshot" src="http://www.useragentman.com/blog/wp-content/uploads/2011/04/firefox-all.png" alt="Firefox screenshot" /></td>
<td><img title="IE screenshot without blurred text-shadow" src="http://www.useragentman.com/blog/wp-content/uploads/2011/04/ie-1.png" alt="IE screenshot without blurred text-shadow" /></td>
</tr>
</tbody>
</table>
<p>As one would expect, works in Firefox but not in IE9.</p>
<p><a class="exampleLink" href="/tests/textShadow/blur1.html">See the above <code>text-shadow</code> code in action (without any IE9 goodness)</a></p>
<h3>Step 1 – IE Blur Filter</h3>
<p>Using <a href="http://paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/">Paul Irish&#8217;s Conditional CSS Pattern</a>, we make an IE9 only rule that will blur the text</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#intro</span> p <span style="color: #00AA00;">&#123;</span>
     <span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #cc00cc;">#cccccc</span><span style="color: #00AA00;">;</span>
     <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">230px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Step 1: apply the Chroma and Blur filter to the text you want the Drop Shadow on */</span>
body<span style="color: #6666ff;">.ie9</span> <span style="color: #cc00cc;">#intro</span> p <span style="color: #00AA00;">&#123;</span>
	zoom<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">1</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#cccccc</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#ccccce</span><span style="color: #00AA00;">;</span>
	filter<span style="color: #00AA00;">:</span> progid<span style="color: #3333ff;">:DXImageTransform</span><span style="color: #6666ff;">.Microsoft</span>.Chroma<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">=</span><span style="color: #cc00cc;">#ccccce</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span>
	        progid<span style="color: #3333ff;">:DXImageTransform</span><span style="color: #6666ff;">.Microsoft</span>.Blur<span style="color: #00AA00;">&#40;</span>pixelradius<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">3</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Note four things:</p>
<ol>
<li>I set the <code>color</code> to be the color of the text-shadow.</li>
<li>We set a background-color to be halfway between the color of the text (black) and the visual background of the text (white).  In this case, I chose <code>#ccccce</code> since <code>#cccccc</code> is already being used by as the color of the text-shadow.</li>
<li>We remove the background color with the <a href="http://msdn.microsoft.com/en-us/library/ms532982%28v=vs.85%29.aspx"><code>Chroma</code> Visual Filter</a> (this is necessary to avoid the Blur filter from being pixelated, in the same manner as <a href="/blog/2011/04/14/css3-text-shadow-can-it-be-done-in-ie-without-javascript/">the text-shadows in my previous article</a>).</li>
<li>We apply the <a href="http://msdn.microsoft.com/en-us/library/ms532979%28v=vs.85%29.aspx"><code>Blur</code> Visual Filter</a> to have a <code>pixelradius</code> of 3 (which is the same as the blur radius from the <code>text-shadow</code>.</li>
</ol>
<table class="dataTable">
<thead>
<tr>
<th>Firefox screenshot</th>
<th>IE screenshot</th>
</tr>
</thead>
<tbody>
<tr>
<td><img title="Firefox screenshot" src="http://www.useragentman.com/blog/wp-content/uploads/2011/04/firefox-all.png" alt="Firefox screenshot" /></td>
<td><img title="IE screenshot of text with Chroma and Blur filters applied" src="http://www.useragentman.com/blog/wp-content/uploads/2011/04/ie-2.png" alt="IE screenshot of text with Chroma and Blur filters applied" /></td>
</tr>
</tbody>
</table>
<p><a class="exampleLink" href="/tests/textShadow/blur2.html">See the above code in action (IE9 will only show the blurred text)</a></p>
<p>So now we have the shadow in IE!  But what about the solid text on top?</p>
<h3>Step 2 – Use <code>:before</code> To Replace the Solid Text</h3>
<p>We now must add one more selector in order to get our black, un-blurred text back:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* Step 2: create a :before rule on the blurred text */</span>
body<span style="color: #6666ff;">.ie9</span> <span style="color: #cc00cc;">#intro</span> p<span style="color: #3333ff;">:before </span><span style="color: #00AA00;">&#123;</span>
  <span style="color: #808080; font-style: italic;">/* color and width of the original text */</span>
  <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">230px</span><span style="color: #00AA00;">;</span>
&nbsp;
  <span style="color: #808080; font-style: italic;">/* This is needed to place the text directly over the shadow. */</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
&nbsp;
  <span style="color: #808080; font-style: italic;">/* This assumes that the data-innertext is the same as the text inside the element. */</span>
  <span style="color: #000000; font-weight: bold;">content</span><span style="color: #00AA00;">:</span> attr<span style="color: #00AA00;">&#40;</span>data-innertext<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
&nbsp;
  <span style="color: #808080; font-style: italic;">/* Positions the text */</span>
  <span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>The <code>:before</code> rule duplicates the blurred text, colors it black and places it before the blurred text.  The text is then duplicated because of the <code>content</code> property, which uses the value of the <code>data-innertext</code> attribute as the generated content — now you know why we set <code>data-innertext</code> at the beginning of this example.  It is absolutely positioned, and since the <code>top</code> and <code>left</code> properties are not set, it places the text on top of the original text.  Also note that the <code>width</code> is the same as the original element (in this case <code>230px</code>).  This is very important, otherwise the shadow will not appear below the text correctly.</p>
<p>The only thing left to explain is the margins and how they position the text.  We must use these formulas to produce the x- and y- offsets of the original <code>text-shadow</code></p>
<div class="equation">
<p><code>margin-left</code> = blur-radius – offset-x</p>
<p><code>margin-top</code> = blur-radius – offset-y</p>
</div>
<p>Why do we need to do this?  Because adding the <code>Blur</code> filter pushes the text a few pixels from down and to the right — namely, the same amount of pixels from the blur-radius.  These simple formulas compensate for that, and place the shadows according to what you set for the x- and y-offsets.</p>
<table class="dataTable">
<thead>
<tr>
<th>Firefox screenshot</th>
<th>IE screenshot</th>
</tr>
</thead>
<tbody>
<tr>
<td><img title="Firefox screenshot" src="http://www.useragentman.com/blog/wp-content/uploads/2011/04/firefox-all.png" alt="Firefox screenshot" /></td>
<td><img title="IE screenshot of simultaed text-shadow" src="http://www.useragentman.com/blog/wp-content/uploads/2011/04/ie-3.png" alt="IE screenshot of simultaed text-shadow" /></td>
</tr>
</tbody>
</table>
<p>And now, let&#8217;s take a look at the difference close up:</p>
<table class="dataTable">
<thead>
<tr>
<th>Firefox screenshot</th>
<th>IE screenshot</th>
</tr>
</thead>
<tbody>
<tr>
<td><img title="Firefox screenshot" src="http://www.useragentman.com/blog/wp-content/uploads/2011/04/firefox-zoom.png" alt="Firefox screenshot" /></td>
<td><img title="IE screenshot of simultaed text-shadow" src="http://www.useragentman.com/blog/wp-content/uploads/2011/04/ie-zoom.png" alt="IE screenshot of simultaed text-shadow" /></td>
</tr>
</tbody>
</table>
<p>Note: the other browsers look about the same in Firefox, so I didn&#8217;t bother posting screen captures of them.</p>
<p><a class="exampleLink" href="/tests/textShadow/blur3.html">See the above code in action, with IE9′s blurred <code>text-shadow</code> workaround.</a></p>
<h2 id="caveats">Caveats</h2>
<p>This solution only works under certain conditions:</p>
<ol>
<li><strong>You cannot have more than one type of font, font-size, font-weight or font-style with the shadowed element.</strong> This is due to the way we produce the shadow (i.e. the <code>data-innertext</code> cannot contain any HTML elements to control the style).</li>
<li><strong>The shadowed element cannot be an <code>inline</code> element.</strong> It can be a block or an inline-block though.</li>
<li><strong>Any background colors or background-images that you want to appear in with the text-shadow must appear in an outside element.</strong> For example, in the following HTML, you would put the <code>background-image</code> or <code>background-color</code> on the <code>&lt;div&gt;</code> tag, not the <code>&lt;p&gt;</code> tag which would have the <code>text-shadow</code>.

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">    &lt;div id=&quot;intro&quot; class=&quot;alignLeft&quot;&gt;
      &lt;p data-innertext=&quot;Blurred Text-Shadow in IE9 Without JavaScript&quot;&gt;
        Blurred Text-Shadow in IE9 Without JavaScript
      &lt;/p&gt;
    &lt;/div&gt;</pre></div></div>

</li>
<li><strong>The shadowed element must be of fixed width</strong> (i.e. widths can be measured in <code>px</code>, <code>em</code>, etc. <strong>Percentages will not work</strong>).</li>
<li><strong>As far as I know, it is impossible to have multiple text-shadows on the same block of text.</strong> If you wish to do this do glow text, you may want to look at my previous article, <em><a href="/blog/2011/04/14/css3-text-shadow-can-it-be-done-in-ie-without-javascript">CSS3 Text-Shadow – Can It Be Done in IE Without JavaScript?</a></em>.</li>
<li><strong>It only works in IE9.</strong> When I originally posted this article, I claimed it worked with IE8, but after further testing, when setting a font on a <code>:before</code> rule, IE8 sometimes produces unpredictable results (sometimes, the font is set to something different than the original text, and other times, the letter spacing is not correct).  IE8 and lower are out of luck. :-(</li>
</ol>
<p style="text-align: right;"><em>Источник: <a href="http://www.useragentman.com/blog/2011/04/23/css-blurred-text-shadow-in-ie-part-i/" target="_blank">useragentman.com</a></em></p>
<ul>
<li>After reading this article, you may want to read <a href="http://www.useragentman.com/blog/2011/04/14/css3-text-shadow-can-it-be-done-in-ie-without-javascript/">other article</a>, which covers producing other text-shadow effects in IE.</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.armenium.ru/css-blurred-text-shadow-in-ie-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Лекции по ASP.NET</title>
		<link>http://www.armenium.ru/lecture-asp-net/</link>
		<comments>http://www.armenium.ru/lecture-asp-net/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 13:51:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Веб-программирование]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[aspx]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[mssql]]></category>

		<guid isPermaLink="false">http://www.armenium.ru/?p=175</guid>
		<description><![CDATA[1. Лекция: Знакомство с ASP.NET В этой лекции представлена вводная информация о технологии ASP.NET. Изложены основные сведения о программе Visual Studio, способах ее установки и типах проектов ASP.NET, создаваемых в этой программе. 2. Лекция: Страницы и элементы управления В данной лекции на простых примерах показаны основные механизмы ASP.NET. Слушатель лекции узнает основные сведения и приемы [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.intuit.ru/department/internet/webdevaspnet/1/" target="_blank">1. Лекция: Знакомство с ASP.NET</a></p>
<p>В этой лекции представлена вводная информация о технологии ASP.NET.  Изложены основные сведения о программе Visual Studio, способах ее  установки и типах проектов ASP.NET, создаваемых в этой программе.</p>
<p><span id="more-175"></span></p>
<p><a href="http://www.intuit.ru/department/internet/webdevaspnet/2/" target="_blank">2. Лекция: Страницы и элементы управления</a></p>
<p>В данной лекции на простых примерах показаны основные механизмы ASP.NET.  Слушатель лекции узнает основные сведения и приемы работы с элементами  управления, их состояниями, событиями и их типами, а также с контекстом  обработки запроса в ASP.NET.</p>
<p><a href="http://www.intuit.ru/department/internet/webdevaspnet/3/" target="_blank">3. Лекция: Элементы управления в действии</a></p>
<p>В данной лекции более детально рассмотрена работа разработчика с  элементами управления приложения. На основе демонстрационных задач  описывается валидация ввода пользователя, контейнеры элементов  управления, создание обработчика для событий нескольких элементов  управления. Показано, как в ASP.NET динамически добавлять элементы  управления в приложение.</p>
<p><a href="http://www.intuit.ru/department/internet/webdevaspnet/4/" target="_blank">4. Лекция: Оформление страниц</a></p>
<p>В этой лекции в общих чертах рассмотрены основные принципы и способы  оформления страниц и элементов управления. Слушатель знакомится с такими  типами оформления приложений ASP.NET как шаблоны, темы и скины. Также  на примере описывается возможность создания собственных элементов  управления, определяемых разработчиком.</p>
<p><a href="http://www.intuit.ru/department/internet/webdevaspnet/5/" target="_blank">5. Лекция: Работа с данными</a></p>
<p>В данной лекции представлены возможности работы с базами данных при  разработке веб-приложений на ASP.NET. Рассмотрены основные типы баз  данных и инструменты работы с ними на примере создания несложных  проектов в Visual Studio.</p>
<p><a href="http://www.intuit.ru/department/internet/webdevaspnet/6/" target="_blank">6. Лекция: ASP.NET на стороне клиента</a></p>
<p>Эта лекция дает общее представление начинающему разработчику о работе с  клиентскими скриптами в ASP.NET. На примерах показываются особенности  реализации обратного вызова на стороне клиента. Отдельное внимание  уделено работе с компонентами для реализации Ajax-функциональности  ASP.NET.</p>
<p><a href="http://www.intuit.ru/department/internet/webdevaspnet/7/" target="_blank">7. Лекция: Распространение ASP.NET приложений</a></p>
<p>В данной лекции рассмотрены основные инструменты отладки веб-приложений в  Visual Studio, а также затронуты нюансы корректного распространения  ASP.NET приложений. В заключении лекции предлагаются интернет-ресурсы  для дальнейшего, более детального изучения технологии ASP.NET.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armenium.ru/lecture-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ilcucinino – Эногастрономия</title>
		<link>http://www.armenium.ru/ilcucinino/</link>
		<comments>http://www.armenium.ru/ilcucinino/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 15:05:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Интернет-магазины]]></category>
		<category><![CDATA[Коммерческие сайты]]></category>
		<category><![CDATA[Портфолио]]></category>

		<guid isPermaLink="false">http://www.armenium.ru/?p=98</guid>
		<description><![CDATA[Продукты гастрономической лавки, с собственной продукцией, услугами кухни и возможностями доставки.]]></description>
			<content:encoded><![CDATA[<p>Продукты гастрономической лавки, с <em>собственной продукцией</em>, услугами кухни и возможностями <em>доставки</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armenium.ru/ilcucinino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Мотосалон Doctor Bike</title>
		<link>http://www.armenium.ru/drbike/</link>
		<comments>http://www.armenium.ru/drbike/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 21:41:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Коммерческие сайты]]></category>
		<category><![CDATA[Портфолио]]></category>

		<guid isPermaLink="false">http://www.armenium.ru/?p=171</guid>
		<description><![CDATA[продажа любых мотоциклов и квадроциклов. ремонт и техническое обслуживание мотоциклов и квадроциклов. сезонное хранение мотоциклов, квадроциклов, скутеров продажа любой защитной экипировки продажа запасных частей и расходных материалов обучение вождению на мотоцикле. Обучение стантрайдингу, тренировки на WHEELIE MACHINE.]]></description>
			<content:encoded><![CDATA[<ul>
<li>продажа любых мотоциклов и квадроциклов.</li>
<li>ремонт и техническое обслуживание мотоциклов и квадроциклов.</li>
<li>сезонное хранение мотоциклов, квадроциклов, скутеров</li>
<li>продажа любой защитной экипировки</li>
<li>продажа запасных частей и расходных материалов</li>
<li>обучение вождению на мотоцикле. Обучение стантрайдингу, тренировки на WHEELIE MACHINE.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.armenium.ru/drbike/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery: Пара сотен плагинов в одной заметке</title>
		<link>http://www.armenium.ru/jquery-plugins/</link>
		<comments>http://www.armenium.ru/jquery-plugins/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 11:16:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Веб-программирование]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[visualjquery]]></category>
		<category><![CDATA[плагины]]></category>

		<guid isPermaLink="false">http://www.armenium.ru/?p=143</guid>
		<description><![CDATA[Итак&#8230; Прошу в мир JQuery Form Validation jQuery Validation. Auto Help. Simple jQuery form validation. jQuery XAV &#8211; form validations. jQuery AlphaNumeric. Masked Input. TypeWatch Plugin. Text limiter for form fields. Ajax Username Check with jQuery. File upload Ajax File Upload. jQUploader. Multiple File Upload plugin. jQuery File Style. Styling an input type file. Progress [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Итак&#8230; Прошу в мир JQuery</strong></p>
<p><img class="alignleft" style="margin: 5px 0px; border: 0pt none;" src="http://www.armenium.ru/wp-content/themes/twicet/files/front3.png" border="0" alt="" hspace="10" vspace="10" width="260" height="61" align="right" /><br />
<span id="more-143"></span></p>
<h3>Form Validation</h3>
<p><a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/" target="_blank">jQuery Validation</a>.<br />
<a href="http://www.dyve.net/jquery/?autohelp" target="_blank">Auto Help</a>.<br />
<a href="http://www.willjessup.com/sandbox/jquery/form_validator/form_validate.html" target="_blank">Simple jQuery form validation</a>.<br />
<a href="http://letmehaveblog.blogspot.com/2007/08/easy-client-side-web-forms-validations.html" target="_blank">jQuery XAV &#8211; form validations</a>.<br />
<a href="http://itgroup.com.ph/alphanumeric/" target="_blank">jQuery AlphaNumeric</a>.<br />
<a href="http://digitalbush.com/projects/masked-input-plugin" target="_blank">Masked Input</a>.<br />
<a href="http://www.dennydotnet.com/post/TypeWatch-jQuery-Plugin.aspx" target="_blank">TypeWatch Plugin</a>.<br />
<a href="http://jquery.com/plugins/project/TextLimiter" target="_blank">Text limiter for form fields</a>.<br />
<a href="http://www.shawngo.com/gafyd/index.html" target="_blank">Ajax Username Check with jQuery</a>.</p>
<h3>File upload</h3>
<p><a href="http://www.phpletter.com/Demo/AjaxFileUpload-Demo/" target="_blank">Ajax File Upload</a>.<br />
<a href="http://www.pixeline.be/experiments/jqUploader/" target="_blank">jQUploader</a>.<br />
<a href="http://www.fyneworks.com/jquery/multiple-file-upload/" target="_blank">Multiple File Upload plugin</a>.<br />
<a href="http://www.appelsiini.net/projects/filestyle" target="_blank">jQuery File Style</a>.<br />
<a href="http://jquery.com/plugins/project/InputFileCSS" target="_blank">Styling an input type file</a>.<br />
<a href="http://digitalbush.com/projects/progress-bar-plugin" target="_blank">Progress Bar Plugin</a>.</p>
<h3>Form &#8211; Select Box stuff</h3>
<p><a href="http://jquery.sanchezsalvador.com/page/jquerycombobox.aspx" target="_blank">jQuery Combobox</a>.<br />
<a href="http://www.ajaxray.com/blog/2007/11/08/jquery-controlled-dependent-or-cascading-select-list-2/" target="_blank">jQuery controlled dependent  (or Cascadign) Select List</a>.<br />
<a href="http://code.google.com/p/jqmultiselects/" target="_blank">Multiple Selects</a>.<br />
<a href="http://www.texotela.co.uk/code/jquery/select/" target="_blank">Select box manipulation</a>.<br />
<a href="http://code.google.com/p/jqueryselectcombo/" target="_blank">Select Combo Plugin</a>.<br />
<a href="http://www.msxhost.com/jquery/linked-selects/json/%20target=">jQuery &#8211; LinkedSelect</a><br />
<a href="http://remysharp.com/2007/09/18/auto-populate-multiple-select-boxes/" target="_blank">Auto-populate multiple select boxes</a>.<br />
<a href="http://www.sitespotting.it/esempi/002/" target="_blank">Choose Plugin (Select Replacement)</a>.</p>
<h3>Form Basics, Input Fields, Checkboxes etc.</h3>
<p><a href="http://www.malsup.com/jquery/form/" target="_blank">jQuery Form Plugin</a>.<br />
<a href="http://code.handlino.com/wiki/jquery-form" target="_blank">jQuery-Form</a>.<br />
<a href="http://envero.org/jlook/" target="_blank">jLook Nice Forms</a>.<br />
<a href="http://www.whitespace-creative.com/jquery/jNice/" target="_blank">jNice</a>.<br />
<a href="http://www.brainfault.com/2007/07/07/pin-plugin-reloaded/" target="_blank">Ping Plugin</a>.<br />
<a href="http://grzegorz.frydrychowicz.net/jquery_toggleformtext/" target="_blank">Toggle Form Text</a>.<br />
<a href="http://thoughts.kuzemchak.net/entry/toggleval-for-jquery/" target="_blank">ToggleVal</a>.<br />
<a href="http://www.pengoworks.com/workshop/jquery/field.plugin.htm" target="_blank">jQuery Field Plugin</a>.<br />
<a href="http://code.befruit.com/" target="_blank">jQuery Form’n Field plugin</a>.<br />
<a href="http://www.texotela.co.uk/code/jquery/checkboxes/" target="_blank">jQuery Checkbox manipulation</a>.<br />
<a href="http://www.alcoholwang.cn/jquery/jTaggingDemo.htm" target="_blank">jTagging</a>.<br />
<a href="http://code.google.com/p/labelcheck/" target="_blank">jQuery labelcheck</a>.<br />
<a href="http://scott.sauyet.com/thoughts/archives/2007/03/31/overlabel-with-jquery/" target="_blank">Overlabel</a>.<br />
<a href="http://blog.amicoimmaginario.it/2007/08/28/jquery-plugin-3-state-radio-buttons/" target="_blank">3 state radio buttons</a>.<br />
<a href="http://sanisoft-demo.com/jquery/plugins/shiftcheckbox/" target="_blank">ShiftCheckbox jQuery Plugin</a>.<br />
<a href="http://digitalbush.com/projects/watermark-input-plugin" target="_blank">Watermark Input</a>.<br />
<a href="http://kawika.org/jquery/checkbox/" target="_blank">jQuery Checkbox (checkboxes with imags)</a>.<br />
<a href="http://www.softwareunity.com/sandbox/jqueryspinbtn/" target="_blank">jQuery SpinButton Control</a>.<br />
<a href="http://www.phpletter.com/form_builder/demo.html" target="_blank">jQuery Ajax Form Builder</a>.<br />
<a href="http://www.texotela.co.uk/code/jquery/focusfields/" target="_blank">jQuery Focus Fields</a>.<br />
<a href="http://home.iprimus.com.au/kbwood/jquery/timeEntry.html" target="_blank">jQuery Time Entry</a>.</p>
<h3>Time, Date and Color Picker</h3>
<p><a href="http://marcgrabanski.com/code/ui-datepicker/" target="_blank">jQuery UI Datepicker</a>.<br />
<a href="http://kelvinluck.com/assets/jquery/datePicker/" target="_blank">jQuery date picker plugin</a>.<br />
<a href="http://code.google.com/p/jquery-timepicker/" target="_blank">jQuery Time Picker</a>.<br />
<a href="http://www.texotela.co.uk/code/jquery/timepicker/" target="_blank">Time Picker</a>.<br />
<a href="http://www.oakcitygraphics.com/jquery/clockpick/ClockPick.cfm" target="_blank">ClickPick</a>.<br />
<a href="http://labs.perifer.se/timedatepicker/" target="_blank">TimePicker</a>.<br />
<a href="http://acko.net/dev/farbtastic" target="_blank">Farbtastic jQuery Color Picker Plugin</a>.<br />
<a href="http://www.intelliance.fr/jquery/color_picker/" target="_blank">Color Picker by intelliance.fr</a>.</p>
<h3>Rating Plugins</h3>
<p><a href="http://www.phpletter.com/Demo/Jquery-Star-Rating-Plugin/#" target="_blank">jQuery Star Rating Plugin</a>.<br />
<a href="http://www.m3nt0r.de/devel/raterDemo/" target="_blank">jQuery Star Rater</a>.<br />
<a href="http://riderdesign.com/articles/displayarticle.aspx?articleid=21" target="_blank">Content rater with asp.net, ajax and jQuery</a>.<br />
<a href="http://www.learningjquery.com/2007/05/half-star-rating-plugin" target="_blank">Half-Star Rating Plugin</a>.</p>
<h3>Search Plugins</h3>
<p><a href="http://www.vulgarisoip.com/2007/08/06/jquerysuggest-11/" target="_blank">jQuery Suggest</a>.<br />
<a href="http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/" target="_blank">jQuery Autocomplete</a>.<br />
<a href="http://www.pengoworks.com/workshop/jquery/autocomplete.htm" target="_blank">jQuery Autocomplete Mod</a>.<br />
<a href="http://www.ajaxdaddy.com/demo-jquery-autocomplete.html" target="_blank">jQuery Autocomplete by AjaxDaddy</a>.<br />
<a href="http://dev.reach1to1.net/saurabh/jplugins/autocomplete/" target="_blank">jQuery Autocomplete Plugin with HTML formatting</a>.<br />
<a href="http://interface.eyecon.ro/docs/autocomplete" target="_blank">jQuery Autocompleter</a>.<br />
<a href="http://nodstrum.com/2007/09/19/autocompleter/" target="_blank">AutoCompleter (Tutorial with PHP&amp;MySQL)</a>.<br />
<a href="http://rikrikrik.com/jquery/quicksearch/" target="_blank">quick Search jQuery Plugin</a>.</p>
<h3>Inline Edit &amp; Editors</h3>
<p><a href="http://www.jaysalvat.com/jquery/jtageditor/" target="_blank">jTagEditor</a>.<br />
<a href="http://demo.wymeditor.org/demo.html" target="_blank">WYMeditor</a>.<br />
<a href="http://garage.pimentech.net/s%D1%81ri%D1%80ts_doc_jquery_jframe/" target="_blank">jQuery jFrame</a>.<br />
<a href="http://www.appelsiini.net/projects/jeditable" target="_blank">Jeditable &#8211; edit in place plugin for jQuery</a>.<br />
<a href="http://www.dyve.net/jquery/?editable" target="_blank">jQuery editable</a>.<br />
<a href="http://www.jdempster.com/category/jquery/disableTextSelect/" target="_blank">jQuery Disable Text Select Plugin</a>.<br />
<a href="http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javas%D1%81ri%D1%80t-library/15/" target="_blank">Edit in Place with Ajax using jQuery</a>.<br />
<a href="http://davehauenstein.com/blog/archives/28" target="_blank">jQuery Plugin &#8211; Another In-Place Editor</a>.<br />
<a href="http://dev.iceburg.net/jquery/tableEditor/demo.php" target="_blank">TableEditor</a>.<br />
<a href="http://joshhundley.com/teditable-in-place-editing-for-tables/" target="_blank">tEditable &#8211; in place table editing for jQuery</a>.</p>
<h3>Audio, Video, Flash, SVG, etc</h3>
<p><a href="http://www.contentwithstructure.com/extras/jmedia" target="_blank">jMedia &#8211; accessible multi-media embedding</a>.<br />
<a href="http://sourceforge.net/projects/jbedit/" target="_blank">JBEdit &#8211; Ajax online Video Editor</a>.<br />
<a href="http://www.sean-o.com/jquery/jmp3/" target="_blank">jQuery MP3 Plugin</a>.<br />
<a href="http://malsup.com/jquery/media/" target="_blank">jQuery Media Plugin</a>.<br />
<a href="http://jquery.lukelutman.com/plugins/flash/index.html" target="_blank">jQuery Flash Plugin</a>.<br />
<a href="http://www.solitude.dk/archives/embedquicktime/" target="_blank">Embed QuickTime</a>.<br />
<a href="http://keith-wood.name/svg.html" target="_blank">SVG Integration</a>.</p>
<h3>Photos/Images/Galleries</h3>
<p><a href="http://jquery.com/demo/thickbox/" target="_blank">ThickBox</a>.<br />
<a href="http://leandrovieira.com/projects/jquery/lightbox/" target="_blank">jQuery lightBox plugin</a>.<br />
<a href="http://blog.joshuaeichorn.com/archives/2007/01/11/jquery-image-strip/" target="_blank">jQuery Image Strip</a>.<br />
<a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html" target="_blank">jQuery slideViewer</a>.<br />
<a href="http://benjaminsterling.com/2007/09/09/jquery-jqgalscroll-photo-gallery/" target="_blank">jQuery jqGalScroll 2.0</a>.<br />
<a href="http://benjaminsterling.com/2007/10/02/jquery-jqgalviewii-photo-gallery/" target="_blank">jQuery &#8211; jqGalViewII</a>.<br />
<a href="http://benjaminsterling.com/2007/10/21/jqgalviewiii-proof-of-concept/" target="_blank">jQuery &#8211; jqGalViewIII</a>.<br />
<a href="http://opiefoto.com/articles/photoslider" target="_blank">jQuery Photo Slider</a>.<br />
<a href="http://joanpiedra.com/jquery/thumbs/" target="_blank">jQuery Thumbs &#8211; easily create thumbnails</a>.<br />
<a href="http://www.texotela.co.uk/code/jquery/jQIR/" target="_blank">jQuery jQIR Image Replacement</a>.<br />
<a href="http://www.gmarwaha.com/jquery/jcarousellite/index.php#what" target="_blank">jCarousel Lite</a>.<br />
<a href="http://projects.sevir.org/storage/jpanview/index.html" target="_blank">jQPanView</a>.<br />
<a href="http://sorgalla.com/projects/jcarousel/#Examples" target="_blank">jCarousel</a>.<br />
<a href="http://www.intelliance.fr/jquery/imagebox/" target="_blank">Interface Imagebox</a>.<br />
<a href="http://www.getintothis.com/blog/2006/10/12/image-gallery-using-jquery-interface-reflections/" target="_blank">Image Gallery using jQuery, Interface &amp; Reflactions</a>.<br />
<a href="http://realazy.org/lab/jquery/j-gallery/" target="_blank">simple jQuery Gallery</a>.<br />
<a href="http://chicagosocial.com/gallery/" target="_blank">jQuery Gallery Module</a>.<br />
<a href="http://www.eogallery.com/" target="_blank">EO Gallery</a>.<br />
<a href="http://flesler.blogspot.com/search/label/jQuery.ScrollShow" target="_blank">jQuery ScrollShow</a>.<br />
<a href="http://www.malsup.com/jquery/cycle/" target="_blank">jQuery Cycle Plugin</a>.<br />
<a href="http://www.projectatomic.com/en/flickr.htm" target="_blank">jQuery Flickr</a>.<br />
<a href="http://www.appelsiini.net/2007/9/lazy-load-images-jquery-plugin" target="_blank">jQuery Lazy Load Images Plugin</a>.<br />
<a href="http://www.sunsean.com/zoomi/" target="_blank">Zoomi &#8211; Zoomable Thumbnails</a>.<br />
<a href="http://remysharp.com/2007/03/19/a-few-more-jquery-plugins-crop-labelover-and-pluck/#crop" target="_blank">jQuery Crop &#8211; crop any image on the fly</a>.<br />
<a href="http://jquery.com/plugins/project/reflection" target="_blank">Image Reflection</a>.</p>
<h3>Google Map</h3>
<p><a href="http://www.dyve.net/jquery/?googlemaps" target="_blank">jQuery Plugin googlemaps</a>.<br />
<a href="http://code.google.com/p/jmaps/" target="_blank">jMaps jQuery Maps Framework</a>.<br />
<a href="http://projects.sevir.org/storage/jqmaps/index.html" target="_blank">jQmaps</a>.<br />
<a href="http://olbertz.de/jquery/googlemap.html#" target="_blank">jQuery &amp; Google Maps</a>.<br />
<a href="http://snippets.dzone.com/posts/show/4361" target="_blank">jQuery Maps Interface forr Google and Yahoo maps</a>.<br />
<a href="http://webrocket.ulmb.com/jmaps/" target="_blank">jQuery J Maps &#8211; by Tane Piper</a>.</p>
<h3>Games</h3>
<p><a href="http://fmarcia.info/jquery/tetris/tetris.html" target="_blank">Tetris with jQuery</a>.<br />
<a href="http://64squar.es/" target="_blank">jQuery Chess</a>.<br />
<a href="http://www.bennadel.com/blog/623-jQuery-Demo-Mad-Libs-Word-Game.htm" target="_blank">Mad Libs Word Game</a>.<br />
<a href="http://www.alexatnet.com/node/68" target="_blank">jQuery Puzzle</a>.<br />
<a href="http://www.willjessup.com/sandbox/jquery/solar_system/rotator.html" target="_blank">jQuery Solar System (not a game but awesome jQuery Stuff)</a>.</p>
<h3>Tables, Grids etc.</h3>
<p><a href="http://docs.jquery.com/Plugins/Tablesorter" target="_blank">UI/Tablesorter</a>.<br />
<a href="http://www.reconstrukt.com/ingrid/" target="_blank">jQuery ingrid</a>.<br />
<a href="http://www.trirand.com/blog/?p=13" target="_blank">jQuery Grid Plugin</a>.<br />
<a href="http://ideamill.synaptrixgroup.com/jquery/tablefilter/tabletest.htm" target="_blank">Table Filter &#8211; awesome!</a>.<br />
<a href="http://dev.iceburg.net/jquery/tableEditor/demo.php" target="_blank">TableEditor</a>.<br />
<a href="http://www.hanpau.com/jquery/unobtrusivetreetable.php" target="_blank">jQuery Tree Tables</a>.<br />
<a href="http://www.javas%D1%81ri%D1%80ttoolbox.com/jquery/#expandablerows" target="_blank">Expandable “Detail” Table Rows</a>.<br />
<a href="http://www.remotesynthesis.com/blog/index.cfm/2007/9/25/Sortable-Table-ColdFusion-Custom-Tag-with-jQueryUI" target="_blank">Sortable Table ColdFusion Costum Tag with jQuery UI</a>.<br />
<a href="http://flesler.blogspot.com/2007/10/jquerybubble.html" target="_blank">jQuery Bubble</a>.<br />
<a href="http://tablesorter.com/docs/" target="_blank">TableSorter</a>.<br />
<a href="http://www.webtoolkit.info/demo/jquery/scrollable/demo.html" target="_blank">Scrollable HTML Table</a>.<br />
<a href="http://p.sohei.org/stuff/jquery/columnmanager/demo/demo.html" target="_blank">jQuery column Manager Plugin</a>.<br />
<a href="http://p.sohei.org/stuff/jquery/tablehover/demo/demo.html" target="_blank">jQuery tableHover Plugin</a>.<br />
<a href="http://p.sohei.org/stuff/jquery/columnhover/demo/demo.html" target="_blank">jQuery columnHover Plugin</a>.<br />
<a href="http://makoomba.altervista.org/grid/" target="_blank">jQuery Grid</a>.<br />
<a href="http://motherrussia.polyester.se/jquery-plugins/tablesorter/" target="_blank">TableSorter plugin for jQuery</a>.<br />
<a href="http://joshhundley.com/teditable-in-place-editing-for-tables/" target="_blank">tEditable &#8211; in place table editing for jQuery</a>.<br />
<a href="http://www.hovinne.com/dev/jquery/chartotable/" target="_blank">jQuery charToTable Plugin</a>.<br />
<a href="http://www.ita.es/jquery/jquery.grid.columnSizing.htm" target="_blank">jQuery Grid Column Sizing</a>.<br />
<a href="http://www.ita.es/jquery/jquery.grid.rowSizing.htm" target="_blank">jQuery Grid Row Sizing</a>.</p>
<h3>Charts, Presentation etc.</h3>
<p><a href="http://worcesterwideweb.com/2007/06/04/jquery-wizard-plugin/" target="_blank">jQuery Wizard Plugin </a>.<br />
<a href="http://www.reach1to1.com/sandbox/jquery/jqchart/" target="_blank">jQuery Chart Plugin</a>.<br />
<a href="http://ejohn.org/apps/speed/" target="_blank">Bar Chart</a>.</p>
<h3>Border, Corners, Background</h3>
<p><a href="http://www.malsup.com/jquery/corner/" target="_blank">jQuery Corner</a>.<br />
<a href="http://blue-anvil.com/archives/anti-aliased-rounded-corners-with-jquery" target="_blank">jQuery Curvy Corner</a>.<br />
<a href="http://dev.jquery.com/%7Epaul/plugins/nifty/example.html" target="_blank">Nifty jQuery Corner</a>.<br />
<a href="http://illandril.net/jQuery/transparentCorners/" target="_blank">Transparent Corners</a>.<br />
<a href="http://www.methvin.com/jquery/jq-corner.html" target="_blank">jQuery Corner Gallery</a>.<br />
<a href="http://blog.brandonaaron.net/my-jquery-plugins/gradient/" target="_blank">Gradient Plugin</a>.</p>
<h3>Text and Links</h3>
<p><a href="http://wanderinghorse.net/computing/javas%D1%81ri%D1%80t/jquery/spoilers/demo.html" target="_blank">jQuery Spoiler plugin</a>.<br />
<a href="http://johannburkard.de/blog/programming/javas%D1%81ri%D1%80t/highlight-javas%D1%81ri%D1%80t-text-higlighting-jquery-plugin.html" target="_blank">Text Highlighting</a>.<br />
<a href="http://www.jdempster.com/category/jquery/disableTextSelect/" target="_blank">Disable Text Select Plugin</a>.<br />
<a href="http://www.texotela.co.uk/code/jquery/newsticker/" target="_blank">jQuery Newsticker</a>.<br />
<a href="http://www.ollicle.com/2007/jun/03/jquery_lineheight_flexible.html" target="_blank">Auto line-height Plugin</a>.<br />
<a href="http://agencenp.net/textgrad/textgrad.html" target="_blank">Textgrad &#8211; a text gradient plugin</a>.<br />
<a href="http://kawika.org/jquery/linklook/" target="_blank">LinkLook &#8211; a link thumbnail preview</a>.<br />
<a href="http://rikrikrik.com/jquery/pager/#examples" target="_blank">pager jQuery Plugin</a>.<br />
<a href="http://rikrikrik.com/jquery/shortkeys/" target="_blank">shortKeys jQuery Plugin</a>.<br />
<a href="http://www.ollicle.com/eg/jquery/biggerlink" target="_blank">jQuery Biggerlink</a>.<br />
<a href="http://troy.dyle.net/linkchecker/" target="_blank">jQuery Ajax Link Checker</a>.</p>
<h3>Tooltips</h3>
<p><a href="http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/" target="_blank">jQuery Plugin &#8211; Tooltip</a>.<br />
<a href="http://www.codylindley.com/blogstuff/js/jtip/" target="_blank">jTip &#8211; The jQuery Tool Tip</a>.<br />
<a href="http://examples.learningjquery.com/62/demo/index.html#examplesection" target="_blank">clueTip</a>.<br />
<a href="http://edgarverle.com/BetterTip/default.cfm" target="_blank">BetterTip</a>.<br />
<a href="http://ioreader.com/2007/05/15/flash-tooltips-using-jquery/" target="_blank">Flash Tooltips using jQuery</a>.<br />
<a href="http://www.texotela.co.uk/code/jquery/tooltipdemo/" target="_blank">ToolTip</a>.</p>
<h3>Menus, Navigations</h3>
<p><a href="http://stilbuero.de/jquery/tabs_3/" target="_blank">jQuery Tabs Plugin &#8211; awesome! </a>. [<a href="http://stilbuero.de/jquery/tabs_3/nested.html" target="_blank">demo nested tabs</a>.]<br />
<a href="http://blog.cutterscrossing.com/index.cfm/2007/6/15/Updated-JQuery-Nested-Tab-Set-with-Demo" target="_blank">another jQuery nested Tab Set example (based on jQuery Tabs Plugin)</a>.<br />
<a href="http://www.sunsean.com/idTabs/" target="_blank">jQuery idTabs</a>.<br />
<a href="http://jdsharp.us/jQuery/plugins/jdMenu/" target="_blank">jdMenu &#8211; Hierarchical Menu Plugin for jQuery</a>.<br />
<a href="http://be.twixt.us/jquery/suckerFish.php" target="_blank">jQuery SuckerFish Style</a>.<br />
<a href="http://bassistance.de/jquery-plugins/jquery-plugin-treeview/" target="_blank">jQuery Plugin Treeview</a>.<br />
<a href="http://be.twixt.us/jquery/treeView.php" target="_blank">treeView Basic</a>.<br />
<a href="http://labs.activespotlight.net/jQuery/menu_demo.html" target="_blank">FastFind Menu</a>.<br />
<a href="http://www.getintothis.com/blog/2006/09/26/my-first-jquery-plugin-a-sliding-menu/" target="_blank">Sliding Menu</a>.<br />
<a href="http://gmarwaha.com/blog/?p=7" target="_blank">Lava Lamp jQuery Menu</a>.<br />
<a href="http://icon.cat/wiki/IconDock_En#iconDock_jQuery_Plugin" target="_blank">jQuery iconDock</a>.<br />
<a href="http://cherne.net/brian/resources/jquery.variations.html" target="_blank">jVariations Control Panel</a>.<br />
<a href="http://www.trendskitchens.co.nz/jquery/contextmenu/" target="_blank">ContextMenu plugin</a>.<br />
<a href="http://p.sohei.org/jquery-plugins/clickmenu/" target="_blank">clickMenu</a>.<br />
<a href="http://www.ndesign-studio.com/blog/mac/css-dock-menu" target="_blank">CSS Dock Menu</a>.<br />
<a href="http://webexpose.org/2006/12/28/jquery-pop-up-menu-tutorial/" target="_blank">jQuery Pop-up Menu Tutorial</a>.<br />
<a href="http://www.getintothis.com/blog/2006/09/26/my-first-jquery-plugin-a-sliding-menu/" target="_blank">Sliding Menu</a>.</p>
<h3>Accordions, Slide and Toggle stuff</h3>
<p><a href="http://bassistance.de/jquery-plugins/jquery-plugin-accordion/" target="_blank">jQuery Plugin Accordion</a>.<br />
<a href="http://fmarcia.info/jquery/accordion.html" target="_blank">jQuery Accordion Plugin Horizontal Way</a>.<br />
<a href="http://letmehaveblog.blogspot.com/2007/10/haccordion-simple-horizontal-accordion.html" target="_blank">haccordion &#8211; a simple horizontal accordion plugin for jQuery</a>.<br />
<a href="http://dev.portalzine.de/index?/Horizontal_Accordion--print" target="_blank">Horizontal Accordion by portalzine.de</a>.<br />
<a href="http://berndmatzner.de/jquery/hoveraccordion/" target="_blank">HoverAccordion</a>.<br />
<a href="http://fmarcia.info/jquery/accordion.html" target="_blank">Accordion Example from fmarcia.info</a>.<br />
<a href="http://blog.evaria.com/wp-content/themes/blogvaria/jquery/index.php" target="_blank">jQuery Accordion Example</a>.<br />
<a href="http://jquery.com/files/demo/dl-done.html" target="_blank">jQuery Demo &#8211; Expandable Sidebar Menu</a>.<br />
<a href="http://www.andreacfm.com/examples/jQpanels/" target="_blank">Sliding Panels for jQuery</a>.<br />
<a href="http://jquery.andreaseberhard.de/toggleElements/" target="_blank">jQuery ToggleElements</a>.<br />
<a href="http://www.ndoherty.com/demos/coda-slider/" target="_blank">Coda Slider</a>.<br />
<a href="http://sorgalla.com/projects/jcarousel/#Examples" target="_blank">jCarousel</a>.<br />
<a href="http://www.reindel.com/accessible_news_slider/" target="_blank">Accesible News Slider Plugin</a>.<br />
<a href="http://icant.co.uk/sandbox/jquerycodeview/" target="_blank">Showing and Hiding code Examples</a>.<br />
<a href="http://gsgd.co.uk/sandbox/jquery/easing/" target="_blank">jQuery Easing Plugin</a>.<br />
<a href="http://sonspring.com/journal/jquery-portlets" target="_blank">jQuery Portlets</a>.<br />
<a href="http://jdsharp.us/jQuery/plugins/AutoScroll/" target="_blank">AutoScroll</a>.<br />
<a href="http://medienfreunde.com/lab/innerfade/" target="_blank">Innerfade</a>.</p>
<h3>Drag and Drop</h3>
<p><a href="http://docs.jquery.com/UI/Draggables" target="_blank">UI/Draggables</a>.<br />
<a href="http://fromvega.com/wordpress/2007/07/14/easydrag-jquery-plugin/" target="_blank">EasyDrag jQuery Plugin</a>.<br />
<a href="http://sonspring.com/journal/jquery-portlets" target="_blank">jQuery Portlets</a>.<br />
<a href="http://dev.iceburg.net/jquery/jqDnR/" target="_blank">jqDnR &#8211; drag, drop resize</a>.<br />
<a href="http://interface.eyecon.ro/demos/drag.html" target="_blank">Drag Demos</a>.</p>
<h3>XML XSL JSON Feeds</h3>
<p><a href="http://www.jongma.org/webtools/jquery/xslt/" target="_blank">XSLT Plugin</a>.<br />
<a href="http://cgaskell.wordpress.com/2006/11/02/jquery-ajax-call-and-result-xml-parsing/" target="_blank">jQuery Ajax call and result XML parsing</a>.<br />
<a href="http://jquery.com/plugins/project/xmlObjectifier" target="_blank">xmlObjectifier &#8211; Converts XML DOM to JSON</a>.<br />
<a href="http://jquery.glyphix.com/" target="_blank">jQuery XSL Transform</a>.<br />
<a href="http://malsup.com/jquery/taconite/" target="_blank">jQuery Taconite &#8211; multiple Dom updates</a>.<br />
<a href="http://www.hovinne.com/blog/index.php/2007/07/15/132-jfeed-jquery-rss-atom-feed-parser-plugin" target="_blank">RSS/ATOM Feed Parser Plugin</a>.<br />
<a href="http://www.malsup.com/jquery/gfeed/" target="_blank">jQuery Google Feed Plugin</a>.</p>
<h3>Browserstuff</h3>
<p><a href="http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/" target="_blank">Wresize &#8211; IE Resize event Fix Plugin</a>.<br />
<a href="http://jquery.khurshid.com/ifixpng.php" target="_blank">jQuery ifixpng</a>.<br />
<a href="http://jquery.andreaseberhard.de/pngFix/" target="_blank">jQuery pngFix</a>.<br />
<a href="http://www.crismancich.de/jquery/plugins/linkscrubber/" target="_blank">Link Scrubber &#8211; removes the dotted line onfocus from links</a>.<br />
<a href="http://www.matthewjrichards.co.uk/articles/2007/06/25/jquery-perciformes-the-entire-suckerfish-familly-under-one-roof" target="_blank">jQuery Perciformes &#8211; the entire suckerfish familly under one roof</a>.<br />
<a href="http://blog.brandonaaron.net/my-jquery-plugins/background-iframe/" target="_blank">Background Iframe</a>.<br />
<a href="http://jquery.com/plugins/project/QinIE" target="_blank">QinIE &#8211; for proper display of Q tags  in IE</a>.<br />
<a href="http://webrocket.ulmb.com/ability/" target="_blank">jQuery Accessibility Plugin</a>.<br />
<a href="http://www.ogonek.net/mousewheel/jquery-demo.html" target="_blank">jQuery MouseWheel Plugin</a>.</p>
<h3>Alert, Prompt, Confirm Windows</h3>
<p><a href="http://trentrichardson.com/Impromptu/" target="_blank">jQuery Impromptu</a>.<br />
<a href="http://nadiaspot.com/jquery/confirm" target="_blank">jQuery Confirm Plugin</a>.<br />
<a href="http://dev.iceburg.net/jquery/jqModal/" target="_blank">jqModal</a>.<br />
<a href="http://www.ericmmartin.com/projects/simplemodal/" target="_blank">SimpleModal</a>.</p>
<h3>CSS</h3>
<p><a href="http://www.kelvinluck.com/article/switch-stylesheets-with-jquery" target="_blank">jQuery Style Switcher</a>.<br />
<a href="http://andykent.bingodisk.com/bingo/public/jss/" target="_blank">JSS &#8211; Javascript StyleSheets</a>.<br />
<a href="http://flesler.blogspot.com/2007/11/jqueryrule.html" target="_blank">jQuery Rule &#8211; creation/manipulation of CSS Rules</a>.<br />
<a href="http://www.designerkamal.com/jPrintArea/" target="_blank">jPrintArea</a>.</p>
<h3>DOM, Ajax and other jQuery plugins</h3>
<p><a href="http://flydom.socianet.com/" target="_blank">FlyDOM</a>.<br />
<a href="http://brandonaaron.net/docs/dimensions/#getting-started" target="_blank">jQuery Dimenion Plugin</a>.<br />
<a href="http://happygiraffe.net/blog/articles/2007/09/26/jquery-logging" target="_blank">jQuery Loggin</a>.<br />
<a href="http://jquery.com/plugins/project/metadata" target="_blank">Metadata &#8211; extract metadata from classes, attributes, elements</a>.<br />
<a href="http://johannburkard.de/blog/programming/javas%D1%81ri%D1%80t/inc-a-super-tiny-client-side-include-javas%D1%81ri%D1%80t-jquery-plugin.html" target="_blank">Super-tiny Client-Side Include Javascript jQuery Plugin</a>.<br />
<a href="http://humanized.com/weblog/2007/09/14/undo-made-easy-with-ajax-part-1/" target="_blank">Undo Made Easy with Ajax</a>.<br />
<a href="http://www.jasons-toolbox.com/JHeartbeat/" target="_blank">JHeartbeat &#8211; periodically poll the server</a>.<br />
<a href="http://www.appelsiini.net/projects/lazyload" target="_blank">Lazy Load Plugin</a>.<br />
<a href="http://blog.brandonaaron.net/2007/08/19/new-plugin-live-query/" target="_blank">Live Query</a>.<br />
<a href="http://jquery.offput.ca/every/" target="_blank">jQuery Timers</a>.<br />
<a href="http://www.joanpiedra.com/jquery/shareit/" target="_blank">jQuery Share it &#8211; display social bookmarking icons</a>.<br />
<a href="http://www.jdempster.com/category/code/jquery/cookiejar/" target="_blank">jQuery serverCookieJar</a>.<br />
<a href="http://ideamill.synaptrixgroup.com/?p=3" target="_blank">jQuery autoSave</a>.<br />
<a href="http://www.semicomplete.com/blog/geekery/jquery-interface-puffer.html" target="_blank">jQuery Puffer</a>.<br />
<a href="http://33rockers.com/jquery/iframe-demo/" target="_blank">jQuery iFrame Plugin</a>.<br />
<a href="http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/" target="_blank">Cookie Plugin for jQuery</a>.<br />
<a href="http://leftlogic.com/lounge/articles/jquery_spy2" target="_blank">jQuery Spy &#8211; awesome plugin</a>.<br />
<a href="http://www.learningjquery.com/2007/01/effect-delay-trick" target="_blank">Effect Delay Trick</a>.<br />
<a href="http://jquick.sullof.com/jquick/" target="_blank">jQuick &#8211; a quick tag creator for jQuery</a>.<a href="http://noteslog.com/post/metaobjects-11-released-today/" target="_blank"><br />
Metaobjects</a>.<br />
<a href="http://www.thunderguy.com/semicolon/2007/08/14/elementready-jquery-plugin/" target="_blank">elementReady</a>.</p>
<p>Источник: <a href="http://habrahabr.ru/blogs/webdev/30023/" target="_blank">habrahabr.ru</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.armenium.ru/jquery-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Используем любой шрифт с Javascript.</title>
		<link>http://www.armenium.ru/fonts-with-javascript/</link>
		<comments>http://www.armenium.ru/fonts-with-javascript/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 13:55:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Canvas]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[SVG]]></category>
		<category><![CDATA[VML]]></category>
		<category><![CDATA[Вектор]]></category>
		<category><![CDATA[Шрифт]]></category>

		<guid isPermaLink="false">http://www.armenium.ru/?p=137</guid>
		<description><![CDATA[Все мы знаем прекрасные библиотеки sIFR3 и FLIR, которые на лету помогают использовать любой шрифт на веб-страницах. Правда, с моей точки зрения, их использование (а именно установку и настройку) нельзя считать легким трудом. Сегодня я расскажу о библиотеке Typeface.js, которая, как видно из названия, работает на чистом Javascript. Немного теории Официальный сайт библиотеки Typeface.js — [...]]]></description>
			<content:encoded><![CDATA[<div class="content">Все мы знаем прекрасные библиотеки sIFR3 и FLIR, которые на лету помогают использовать любой шрифт на веб-страницах.</p>
<p>Правда, с моей точки зрения, их использование (а именно установку и настройку) нельзя считать легким трудом.</p>
<p>Сегодня я расскажу о библиотеке Typeface.js, которая, как видно из названия, работает на чистом Javascript.<span id="more-137"></span></p>
<p><img src="http://farm4.static.flickr.com/3410/3345011432_21629973d3_o.jpg" alt="" /></p>
<p><a name="habracut"></a></p>
<h1>Немного теории</h1>
<p>Официальный сайт библиотеки Typeface.js — <a href="http://typeface.neocracy.org/">http://typeface.neocracy.org/</a>. На этом ресурсе можно найти всю дополнительную информацию.</p>
<h4>Как это работает</h4>
<p>Библиотека основывается на встроенных в браузер возможностях отрисовки векторной графики. Уже довольно долгое время браузеры поддерживают отрисовку векторной графики, Firefox имеет поддержку обьектов <a href="http://www.whatwg.org/specs/web-apps/current-work/#the-canvas-element">canvas</a> и <a href="http://www.w3.org/TR/SVG11/">SVG</a>, а IE поддерживает <a href="http://www.w3.org/TR/NOTE-VML">VML</a>. Поддержка браузеров, заявленная разработчиком Дэвидом Честером (David Chester): Firefox 1.5+, Safari 2+, Internet Explorer 6+.</p>
<p>Библиотека состоит из двух компонентов: perl модул для конвертирования truetype шрифтов в векторные координаты и javascript-файла, который рендерит текст в браузере используя векторное описание шрифтов.</p>
<h4>Преимущества</h4>
<ul>
<li>Самое главное — отсутствие Flash. Всё работает на встроенных возможностях браузеров (при чем даже не самых последних версиях).</li>
<li>Быстрая и простая установка. Не нужно разбираться в тонкостях более «навороченных» sIFR и FLIR.</li>
<li>Текст видим как «текст», его можно выбрать, скопировать и т.д. Поисковики обрабатывают всё именно как текст. Правда, выбрать текст можно только в браузерах, поддерживающих canvas</li>
<li>Поддержка всех свойств текста в CSS2. (font-size, letter-spacing, font-stretch, font-weight, line-height и т.д)</li>
</ul>
<h1>Пример</h1>
<h4>Подготовка</h4>
<ul>
<li><a href="http://typeface.neocracy.org/download.html">Качаем</a> библиотеку и заливаем к себе на сервер в папочку /js/</li>
<li>Далее нужно конвертировать нужный truetype шрифт с помощью <a href="http://typeface.neocracy.org/fonts.html">«Convert a Font»</a> или качаем себе <a href="http://typeface.neocracy.org/TypefaceJS-0.10.tar.gz">perl моудль</a>.</li>
<li>Поместим полученный в результате конверта файл .js в папочку с библиотекой.</li>
</ul>
<h4>Процесс</h4>
<ul>
<li>В &lt;head&gt; документа помещаем<br />
<blockquote><p><code><span style="color: black;">&lt;script type=<span style="color: #a31515;">"text/javascript"</span> src=<span style="color: #a31515;">"js/typeface-0.11.js"</span>&gt;&lt;/script&gt;</span></code></p>
<p>&lt;script type=<span style="color: #a31515;">&laquo;text/javascript&raquo;</span> src=<span style="color: #a31515;">&laquo;js/moj-font.typeface.js&raquo;</span>&gt;&lt;/script&gt;</p></blockquote>
<p>, где <span style="text-decoration: underline;">moj-font</span> это тот документ, который мы получили в результате конвертирования.</li>
<li>ВАЖНО! Все css-файлы должны быть подгружены перед подгрузкой библиотеки. Это архиважно, иначе результата не будет.</li>
<li>В &lt;body&gt; документа любому слою, в котором нам нужно присвоить тексту выбранный шрифт, ставим класс typeface-js.<br />
<blockquote><p><code><span style="color: black;">&lt;div <span style="color: #0000ff;">class</span>=<span style="color: #a31515;">"myclass typeface-js"</span> style=<span style="color: #a31515;">"font-family: ALSAgrus; font-size:40px;"</span>&gt;</span></code></p>
<p>Хабрахабр.ру</p>
<p><span style="color: black;">&lt;/div&gt;</span></p></blockquote>
</li>
<li>Стиль можно задать как в атрибуте стайл, так и в css. Font-family должен быть названием шрифта, подгруженного с библиотекой. Для справки, правильное название можно посмотреть внизу конвертированного js файла с векторным отображением шрифта.</li>
</ul>
<p>Всё, можно загружать страницу в браузере и смотреть результат!</p>
<p>А вот пример такой страници целиком:</p>
<p>blockquote&gt;<code><span style="color: black;"> </span></code></p>
<ol> <span style="color: black;"></p>
<li><span style="color: #0000ff;">&lt;!</span><span style="color: #800000;">DOCTYPE</span> <span style="color: #ff0000;">HTML</span> <span style="color: #ff0000;">PUBLIC</span> <span style="color: #0000ff;">&laquo;-//W3C//DTD HTML 4.01//EN&raquo;</span> <span style="color: #0000ff;">&laquo;http://www.w3.org/TR/html4/strict.dtd&raquo;</span><span style="color: #0000ff;">&gt;</span></li>
<li><span style="color: #0000ff;">&lt;</span><span style="color: #800000;">html</span><span style="color: #0000ff;">&gt;</span></li>
<li> <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">head</span><span style="color: #0000ff;">&gt;</span></li>
<li> <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">title</span><span style="color: #0000ff;">&gt;</span>Хабрафонт<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">title</span><span style="color: #0000ff;">&gt;</span></li>
<li> <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">meta</span> <span style="color: #ff0000;">http-equiv</span><span style="color: #0000ff;">=&raquo;Content-Type&raquo;</span> <span style="color: #ff0000;">content</span><span style="color: #0000ff;">=&raquo;text/html; charset=utf-8&#8243;</span> <span style="color: #0000ff;">/&gt;</span></li>
<li></li>
<li> <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">script</span> <span style="color: #ff0000;">type</span><span style="color: #0000ff;">=&raquo;text/javascript&raquo;</span> <span style="color: #ff0000;">src</span><span style="color: #0000ff;">=&raquo;js/typeface-0.11.js&raquo;</span><span style="color: #0000ff;">&gt;&lt;/</span><span style="color: #800000;">script</span><span style="color: #0000ff;">&gt;</span></li>
<li> &lt;script type=<span style="color: #a31515;">&laquo;text/javascript&raquo;</span> src=<span style="color: #a31515;">&laquo;js/als_agrus__regular.typeface.js&raquo;</span>&gt;<span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">script</span><span style="color: #0000ff;">&gt;</span></li>
<li></li>
<li> <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">head</span><span style="color: #0000ff;">&gt;</span></li>
<li> <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">body</span><span style="color: #0000ff;">&gt;</span></li>
<li></li>
<li> <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">div</span> <span style="color: #ff0000;">class</span><span style="color: #0000ff;">=&raquo;myclass typeface-js&raquo;</span> <span style="color: #ff0000;">style</span><span style="color: #0000ff;">=&raquo;font-family: ALSAgrus; font-size:40px;&raquo;</span><span style="color: #0000ff;">&gt;</span></li>
<li> Хабрахабр.ру</li>
<li> <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">div</span><span style="color: #0000ff;">&gt;</span></li>
<li> <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">div</span><span style="color: #0000ff;">&gt;</span></li>
<li> Сверху мы видим обычный текст, обработанный <span style="color: #0000ff;">&lt;</span><span style="color: #800000;">br</span> <span style="color: #0000ff;">/&gt;</span> библиотекой Typeface.js в шрифт ALS Agrus</li>
<li> <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">div</span><span style="color: #0000ff;">&gt;</span></li>
<li></li>
<li> <span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">body</span><span style="color: #0000ff;">&gt;</span></li>
<li><span style="color: #0000ff;">&lt;/</span><span style="color: #800000;">html</span><span style="color: #0000ff;">&gt;</span></li>
<p></span></ol>
<p>Для примера я использую платный шрифт ALS Agrus для того, чтобы увидеть результат в более сложных шрифтах. То, что получилось у меня, можно увидеть на картинке в топе.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.armenium.ru/fonts-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Кроссбраузерный border-radius</title>
		<link>http://www.armenium.ru/border-radius/</link>
		<comments>http://www.armenium.ru/border-radius/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 15:47:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Веб-программирование]]></category>
		<category><![CDATA[border-radius]]></category>
		<category><![CDATA[box-shadow]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Круглые уголки]]></category>

		<guid isPermaLink="false">http://www.armenium.ru/?p=131</guid>
		<description><![CDATA[Одной из самых больных тем верстальщиков являются скругление уголков. В последнее время ситуация улучшается и браузеры потихоньку начинают поддерживать столь востребованные CSS-свойства. FF, Safari, Chrome делают это через свойства с своими особыми префиксами и Opera — без префиксов. В стороне у нас стоит, как всегда, IE. К счастью, IE можно довольно красиво победить его же [...]]]></description>
			<content:encoded><![CDATA[<p>Одной из самых больных тем верстальщиков являются <a href="/tag/CSS+%D0%9A%D1%80%D1%83%D0%B3%D0%BB%D1%8B%D0%B5%20%D1%83%D0%B3%D0%BE%D0%BB%D0%BA%D0%B8">скругление  уголков</a>. В последнее время ситуация улучшается и браузеры  потихоньку начинают поддерживать столь востребованные CSS-свойства.</p>
<p><span id="more-131"></span> FF,  Safari, Chrome делают это через свойства с своими особыми префиксами и  Opera — без префиксов. В стороне у нас стоит, как всегда, IE.</p>
<p>К  счастью, IE можно довольно красиво победить его же средствами. Одно из  понравившихся мне решений, использующее VML и behaviour — <a href="http://code.google.com/p/curved-corner/" target="_blank">curved-corner</a>. Для  использования сливаем <a href="http://curved-corner.googlecode.com/files/border-radius.htc">border-radius.htc</a>,  складываем рядом с CSS и используем следующий код:</p>
<pre><code>
.my-block {
  /* Для хороших браузеров */
  -moz-border-radius: 10px; /* Firefox */
  -webkit-border-radius: 10px; /* Safari, Chrome */
  -khtml-border-radius: 10px; /* KHTML */
  border-radius: 10px; /* CSS3 */
  /* Для плохих IE */
  behavior: url(border-radius.htc); /* учим IE border-radius */
}
</code></pre>
<p>Да, кстати, по соседству можно найти менее  востребованный, но всё же полезный <a href="http://code.google.com/p/box-shadow/" target="_blank">behaviour для box-shadow</a>.</p>
<h2><a href="http://fetchak.com/ie-css3/" target="_blank">Демо</a></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.armenium.ru/border-radius/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Как реализовать border-radius в IE</title>
		<link>http://www.armenium.ru/border-radius-in-ie/</link>
		<comments>http://www.armenium.ru/border-radius-in-ie/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 15:15:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Веб-программирование]]></category>
		<category><![CDATA[border-radius]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://www.armenium.ru/?p=118</guid>
		<description><![CDATA[DD_roundies &#8211; Code-only rounded HTML boxes DD_roundies is free software under the MIT License. You might also enjoy DD_belatedPNG. What? This is a Javascript library that makes creation of rounded-corner HTML boxes easier, with a focus on Internet Explorer. IE is supported through use of VML. Standards-compliant browsers are, by default, ignored. If you wish [...]]]></description>
			<content:encoded><![CDATA[<h4>DD_roundies &#8211; Code-only rounded HTML boxes</h4>
<p>DD_roundies is free software under the <a href="#license">MIT  License</a>.<br />
You might also enjoy <a href="http://dillerdesign.com/experiment/DD_belatedPNG">DD_belatedPNG</a>.<br />
<span id="more-118"></span></p>
<h3><a name="what">What?<br />
</a></h3>
<p>This is a Javascript library that makes creation of rounded-corner  HTML boxes easier, with a focus on Internet Explorer.</p>
<p>IE is supported through use of <acronym title="Vector Markup  Language">VML</acronym>.  Standards-compliant browsers are, by default,  ignored.  If you wish it so, each call to <code>DD_roundies.addRule</code> can take an optional third parameter that will spit out appropriate  proprietary code for browsers that are known to support the CSS <code>border-radius</code> property.</p>
<p>Since Opera doesn&#8217;t currently (time of writing: 2009-01-01)  support <code>border-radius</code>, this library doesn&#8217;t do anything in  Opera.  If you need something truly cross browser, use this library only  for IE (through <a href="http://www.quirksmode.org/css/condcom.html">conditional  comments</a>), and use an SVG background image for other browsers.</p>
<p>As of 0.0.2a, IE now supports varying border thicknesses,  matching Mozilla&#8217;s implementation almost pixel-for-pixel.</p>
<p>It also happens to include correct support for PNG images in IE6,  using code borrowed from my other free software, <a href="http://dillerdesign.com/experiment/DD_belatedPNG">DD_belatedPNG</a>.</p>
<h3>Table of Contents</h3>
<div>
<ul>
<li><a href="#how">How?</a></li>
<li><a href="#usage">Usage</a></li>
<li><a href="#additional_usage">Additional  Usage</a></li>
<li><a href="#DD_belatedPNG_compatibility">Compatibility  with DD_belatedPNG</a></li>
<li><a href="#technical_summary">Technical  Summary</a></li>
<li><a href="#lacking">Known  Issues</a></li>
<li><a href="#supported_browsers">Supported  Browsers</a></li>
<li><a href="#download">Download</a></li>
<li><a href="#examples">Examples</a></li>
</ul>
<h3>
<hr style="height: 1px; width: 100%;" size="1" /></h3>
<h3><a name="how">How?<br />
</a></h3>
<p>Quick summary:</p>
<p>This uses Microsoft&#8217;s implementation of <acronym title="Vector  Markup Language">VML</acronym> for Internet Explorer.  For other  browsers, this adds simple <code>border-radius</code> styles to the  document (IF and only if you specify the third argument in <code>DD_belatedPNG.addRule</code>).</p>
<p>The third argument in <code>addRule</code> defaults to false.   This library does focus primarily on IE.</p>
<h3><a name="usage">Usage<br />
</a></h3>
<p>The intended implementation is pretty easy:</p>
<ul>
<li><a href="#download">Download</a> a copy of the DD_roundies Javascript file &#8211; please do not hotlink mine,  I am on a shared host.</li>
<li>Refer to it in your document (second line of the example code a  few bullets down).</li>
<li>In another script node, add function calls to <code>DD_roundies.addRule()</code>.</li>
<li><code>addRule</code> can take up to three arguments:
<ul>
<li><strong>(REQUIRED)</strong> A text string representing a CSS selector</li>
<li><strong>(REQUIRED)</strong> A text string representing a border radius  or radii (anywhere from 1 to 4, separated by commas)</li>
<li><strong>(OPTIONAL)</strong> A boolean indicating whether or not you  want to make roundies just in IE (set to false), or attempt to make  roundies in &laquo;all&raquo; browsers (set to true).</li>
</ul>
</li>
<li> Here is an example: 						<code> &lt;script src="DD_roundies.js"&gt;&lt;/script&gt;<br />
&lt;script&gt;<br />
/* EXAMPLES */</code></p>
<p>/* IE only */<br />
DD_roundies.addRule(&#8216;.roundify&#8217;, &#8217;10px&#8217;);</p>
<p>/* varying radii, IE only */<br />
DD_roundies.addRule(&#8216;.something_else&#8217;, &#8217;10px 4px&#8217;);</p>
<p>/* varying radii, &laquo;all&raquo; browsers */<br />
DD_roundies.addRule(&#8216;.yet_another&#8217;, &#8217;5px&#8217;, true);<br />
&lt;/script&gt;</li>
<li>As of 0.0.3a, you can roll a bunch of CSS selectors into one  argument, just like how you&#8217;d do a selector group in a CSS file: <code>fix('.example1,  .example2, img');</code></li>
</ul>
<h3><a name="additional_usage">Additional Usage<br />
</a></h3>
<p>Specifically regarding the second argument in the <code>addRule()</code>,  values for the topleft, topright, bottomright, and bottomleft are  implied, in that order.</p>
<p>This is modeled after how CSS <code>border-width</code> is  implied (where one value sets all, two values sets the top/bottom and  right/left, etc):</p>
<ul>
<li><code>'10px'</code> sets all corner radii to 10px.</li>
<li><code>'10px 5px'</code> sets the top-left and bottom-right  corner radii to 10px, and the other corners to 5px.</li>
<li><code>'10px 5px 3px'</code> sets the top-left to 10px, the  top-right to 5px, the bottom-right to 3px, and the bottom-left to 5px.</li>
<li><code>'10px 5px 3px 0'</code> sets the top-left to 10px, the  top-right to 5px, the bottom-right to 3px, and the bottom-left to 0px.</li>
</ul>
<h3><a name="DD_belatedPNG_compatibility">Compatibility with  DD_belatedPNG</a></h3>
<p>If you want to, you can forgo using both DD_belatedPNG and DD_roundies  together.  Just use DD_roundies, and make a call like this for boxes  whose corners you don&#8217;t wish to round but <strong>would</strong> like to fix the  PNG within: 				<code><br />
/* notice the lacking second and third argument? */<br />
/* the radii will default to zero */<br />
DD_roundies.addRule('.your .example img'); </code></p>
<div>
<h3><a name="technical_summary">Technical Summary<br />
</a></h3>
<ul>
<li>Invoking <code>DD_roundies.addRule()</code> adds a line of CSS  to the document via DOM.</li>
</ul>
<p>That&#8217;s where the similarities between IE&#8217;s implementation and  other browsers&#8217; implementation end.</p>
<p>If the third argument of <code>addRule</code> is specified and <code>true</code>,  non-IE browsers simply add some rules: <code>-moz-border-radius</code>,  <code>-webkit-border-radius</code>, and vanilla <code>border-radius</code>.</p>
<p>IE, on the other hand, has to do a lot more:</p>
<ul>
<li>The selector of this CSS is provided by the first argument for <code>addRule</code>,  which should be a string (such as <code>#content div</code>).</li>
<li>The declaration of this CSS is an MSIE-proprietary <a href="http://msdn.microsoft.com/en-us/library/ms532147.aspx">behavior</a> &#8211; basically a Javascript expression bound to elements on the fly,  without walking through a NodeList collection.</li>
<li>The content of the behavior executes a function in the scope of  each element matched, along with an array of radius values.</li>
<li>The first duty of this function is to reset its own <code>style.behavior</code> to no longer have a value; allowing behaviors to continue unchallenged  is a recipe of for CPU-eating disaster.</li>
<li>The function then examines the element&#8217;s dimensions, location,  and styles using <code>offsetWidth</code>, <code>offsetHeight</code>, <code>offsetLeft</code>,  <code>offsetTop</code>, and <code>currentStyle</code></li>
<li>Using the above information, a <acronym title="Vector Markup  Language">VML</acronym> <code>&lt;DD_roundies:rect/&gt;</code> node is  constructed and prepended (<code>insertBefore</code>) to the element.   Well, three VML elements actually: one for the stroke and its varying  thickness, one for the background color (if present), and one for the  background image.</li>
<li>The border thicknesses are erased and added to their respective  padding (left border gets added to left padding, etc), allowing the  outer stroke to be visible.</li>
<li>The <acronym title="Vector Markup Language">VML</acronym> node  is absolutely positioned to follow behind the element like a lost little  puppy. It copies the matched element&#8217;s <code>z-index</code>.</li>
<li>To support various positioning and repeat background  properties, some of the <acronym title="Vector Markup Language">VML</acronym> element gets a <code>style.clip</code> rectangle.</li>
</ul>
<hr />
<div>
<h3><a name="lacking">Known Issues</a></h3>
</div>
<ul>
<li>This cannot be used on the <code>&lt;BODY&gt;</code> element,  due to next/previousSibling DOM relationships.</li>
<li><code>&lt;TABLE&gt;</code>, <code>&lt;TR&gt;</code>, <code>&lt;TD&gt;</code>,  <code>&lt;SELECT&gt;</code>, <code>&lt;OPTION&gt;</code>, <code>&lt;TEXTAREA&gt;</code> elements do not play nicely yet.  Do not attempt.</li>
<li>This script does not address <code>background-position: fixed;</code> functionality.</li>
<li>&laquo;Fixed&raquo; <code>&lt;IMG/&gt;</code> elements must take on <code>visibility:hidden;</code>,  and thus become unclickable.  I see no workaround other than using  clear pixel GIF replacements, and that is code that I am not going to  write.</li>
<li><code>&lt;INPUT type="image"/&gt;</code> nodes are not  supported.  The node with the original PNG <code>SRC</code> must take on  <code>visibility:hidden;</code></li>
<li>Testing for PNG image presence is done by Javascript string  search.  If you have a URL that doesn&#8217;t end in .png, you&#8217;re not in luck.   I suppose I could add a &#8216;force&#8217; option &#8211; let me know if you need it.</li>
<li>The corners will sometimes revert to square in WebKit.  Examine  your padding versus your border-radius &#8211; WebKit will cut things short  if the radius is bigger than the padding value.</li>
<li>IE8 beta 2 is incredibly slow at implementing this, and lacks  background images.</li>
</ul>
<hr />
<div>
<h3><a name="supported_browsers">Supported Browsers</a></h3>
</div>
<p>This has been tested to work in IE6, IE7, Firefox 3.0.x, Safari  3.1.2, and Google Chrome 1.0.  Opera has no support at the moment, but  it <a href="http://dev.opera.com/articles/view/new-development-techniques-using-opera-k/">looks  like it will at some point in the future</a>, so hang tight.</p>
<p>There is partial support for IE8 beta 2.  A lot doesn&#8217;t work:  background images, resizing (seriously, the <code>window.onresize</code> event doesn&#8217;t fire, what the &lt;expletive/&gt; ?), etc.  Also NOTE  that IE8 is INCREDIBLY slow at implementing roundies, for reasons I have  yet to discover.</p>
<hr />
<h2><a name="download">Download</a></h2>
</div>
<div><a href="http://www.dillerdesign.com/experiment/DD_roundies/DD_roundies_0.0.2a.js"><big>↓</big>0.0.2a.js  <em>(Uncompressed, ~17Kb)</em></a><br />
<a href="http://www.dillerdesign.com/experiment/DD_roundies/DD_roundies_0.0.2a-min.js"><big>↓</big>0.0.2a-min.js  <em>(Compressed, ~9Kb)</em></a></div>
<div>
<hr />
<div>Warning: This doesn&#8217;t look so good in WebKit browsers.</div>
<div>
<h3><a name="examples">Examples</a></h3>
<p><a href="http://www.dillerdesign.com/experiment/DD_roundies/#examples" target="_blank">http://www.dillerdesign.com/experiment/DD_roundies/#examples</a></p>
<hr style="height: 1px; width: 100%;" size="1" />
<p><span style="color: #008080;">Есть еще такое решение</span> &#8211; http://code.google.com/p/rocon/<br />
Демо &#8211;  http://chikuyonok.ru/playground/rocon/</p>
</div>
</div>
</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2446px; width: 1px; height: 1px; overflow: hidden;">
<h3><a name="examples">Examples</a></h3>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.armenium.ru/border-radius-in-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>МИР МОТОРОВ &#8211; Мотосалон БАЙКЕР</title>
		<link>http://www.armenium.ru/mir-motorov/</link>
		<comments>http://www.armenium.ru/mir-motorov/#comments</comments>
		<pubDate>Sat, 08 May 2010 15:41:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Коммерческие сайты]]></category>
		<category><![CDATA[Портфолио]]></category>
		<category><![CDATA[bike]]></category>
		<category><![CDATA[chopper]]></category>
		<category><![CDATA[Kawasaki]]></category>
		<category><![CDATA[Keeway]]></category>
		<category><![CDATA[Kymco]]></category>
		<category><![CDATA[Moto]]></category>
		<category><![CDATA[байк]]></category>
		<category><![CDATA[запчастей]]></category>
		<category><![CDATA[запчасти]]></category>
		<category><![CDATA[каталог]]></category>
		<category><![CDATA[квадроциклы]]></category>
		<category><![CDATA[мотор]]></category>
		<category><![CDATA[Мототехника]]></category>
		<category><![CDATA[мотоциклы]]></category>
		<category><![CDATA[одежда]]></category>
		<category><![CDATA[Ремонт]]></category>
		<category><![CDATA[сервис]]></category>
		<category><![CDATA[снаряжение]]></category>
		<category><![CDATA[чопер]]></category>
		<category><![CDATA[чоппер]]></category>
		<category><![CDATA[шлемы]]></category>
		<category><![CDATA[экипировка]]></category>
		<category><![CDATA[эндуро]]></category>

		<guid isPermaLink="false">http://www.armenium.ru/?p=106</guid>
		<description><![CDATA[Мототехника, Moto, мотоциклы, мотор, квадроциклы, Kawasaki, Kymco, Keeway, мотоциклы, эндуро, чоппер, chopper, байк, чопер, bike, запчасти, каталог, запчастей, шлемы, одежда, сервис, ремонт, экипировка, снаряжение﻿]]></description>
			<content:encoded><![CDATA[<p>Мототехника, Moto, мотоциклы, мотор, квадроциклы, Kawasaki, Kymco, Keeway, мотоциклы, эндуро, чоппер, chopper, байк, чопер, bike, запчасти, каталог, запчастей, шлемы, одежда, сервис, ремонт, экипировка, снаряжение﻿</p>
]]></content:encoded>
			<wfw:commentRss>http://www.armenium.ru/mir-motorov/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
 
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
