<?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>Jemand.ru &#187; li</title>
	<atom:link href="http://jemand.ru/tag/li/feed/" rel="self" type="application/rss+xml" />
	<link>http://jemand.ru</link>
	<description>Веб строительство начинающим.</description>
	<lastBuildDate>Sat, 31 Dec 2011 16:49:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Выпадающий вверх список</title>
		<link>http://jemand.ru/vypadayushhij-vverx-spisok/</link>
		<comments>http://jemand.ru/vypadayushhij-vverx-spisok/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 07:53:17 +0000</pubDate>
		<dc:creator>Jemand</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[li]]></category>
		<category><![CDATA[ul]]></category>
		<category><![CDATA[Выпадающий список]]></category>

		<guid isPermaLink="false">http://jemand.ru/?p=1027</guid>
		<description><![CDATA[1. CSS .wrapper { height: 30px; line-height: 30px; width: 200px; float: left; clear: both; position: relative; margin: 10px; font-family: "Myriad Pro", "Trebuchet MS", Helvetica, sans-serif; font-size: 12px; text-transform: uppercase; } .itemMain { color: #fff; z-index: 10; border: 1px solid #333; background-color: #777; background-repeat: no-repeat; background-position: 95% 50%; cursor: pointer; text-align: left; text-indent: 10px; width: 200px; [...]]]></description>
			<content:encoded><![CDATA[<p><span class="point">1. CSS</span></p>
<pre><code>.wrapper {
	height: 30px;
	line-height: 30px;
	width: 200px;
	float: left;
	clear: both;
	position: relative;
	margin: 10px;
	font-family: "Myriad Pro", "Trebuchet MS", Helvetica, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	}
.itemMain {
	color: #fff;
	z-index: 10;
	border: 1px solid #333;
	background-color: #777;
	background-repeat: no-repeat;
	background-position: 95% 50%;
	cursor: pointer;
	text-align: left;
	text-indent: 10px;
	width: 200px;
	position: absolute;
	top: 0px;
	left: 0px;
	text-shadow: 1px 1px 1px #000;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	}
.down {
	background-image: url(down.png);
	}
.up{
	background-image: url(up.png);
	}
.wrapper ul {
	list-style: none;
	padding: 2px 0px 0px 0px;
	width: 100%;
	position: absolute;
	bottom: 30px;
	left: 0px;
	}
.wrapper ul li a {
	text-decoration: none;
	cursor: pointer;
	display: block;
	padding: 3px 0px;
	line-height: 20px;
	text-indent: 10px;
	letter-spacing: 1px;
	color: #ddd;
	background-color: #525252;
	border: 1px solid #333;
	margin: 3px 0px;
	text-shadow: 1px 1px 1px #000;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background:
		-webkit-gradient (
		linear,
		left bottom,
		left top,
		color-stop(0.12, rgb(51,51,51)),
		color-stop(0.56, rgb(82,82,82))
		);
	background:
		-moz-linear-gradient (
		center bottom,
		rgb(51,51,51) 12%,
		rgb(82,82,82) 56%
		);
	-moz-box-shadow: 0px 0px 2px #333 inset;
	-webkit-box-shadow: 0px 0px 2px #333 inset;
	box-shadow: 0px 0px 2px #333 inset;
	}
.wrapper ul li a:hover {
	background: #333;
	color: #fff;
	-moz-box-shadow: 0px 0px 3px #ddd inset;
	-webkit-box-shadow: 0px 0px 3px #ddd inset;
	box-shadow: 0px 0px 3px #ddd inset;
	}
</code></pre>
<p><span class="point">2. Подключение jQuery</span></p>
<pre><code>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"&gt;&lt;/script&gt;
</code></pre>
<p><span class="point">3. JavaScript</span></p>
<pre><code>&lt;script type="text/javascript"&gt;
	$(function() {
		$('#ui_element').find('li').hide();
		$('#ui_element').find('.itemMain').toggle(
			function(){
				var $this 	= $(this);
				$this.addClass('down').removeClass('up');
				var $menu	= $this.prev();
				var t = 50;
				$($menu.find('li').get().reverse()).each(function(){
					var $li = $(this);
					var showmenu = function(){$li.show();};
					setTimeout(showmenu,t+=50);
				});
			},
			function(){
				var $this 	= $(this);
				$this.addClass('up').removeClass('down');
				var $menu	= $this.prev();
				var t = 50;
				$($menu.find('li').get().reverse()).each(function(){
					var $li = $(this);
					var hidemenu = function(){$li.hide();};
					setTimeout(hidemenu,t+=50);
				});
			}
		);
	});
&lt;/script&gt;
</code></pre>
<p><span class="point">4. HTML</span></p>
<pre><code>&lt;div id="ui_element" class="wrapper"&gt;
	&lt;ul&gt;
		&lt;li&gt;&lt;a href="#"&gt;Пункт №1&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;Пункт №2&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;Пункт №3&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;Пункт №4&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;Пункт №5&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;Пункт №6&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;Пункт №7&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;Пункт №8&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;Пункт №9&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a href="#"&gt;Пункт №0&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;div class="itemMain up"&gt;Меню&lt;/div&gt;
&lt;/div&gt;
</code></pre>
<p><span class="point">5. Изображения</span><br />
<img alt="" src="http://jemand.ru/examples/images/vypadayushhij-vverx-spisok/up.png" class="my_images_style" width="10" height="9" /><img alt="" src="http://jemand.ru/examples/images/vypadayushhij-vverx-spisok/down.png" class="my_images_style" width="10" height="9" /></p>
<div class="demo_n_vk" style="padding-top: 15px;"><span class="demo_n"><a href="http://jemand.ru/examples/vypadayushhij-vverx-spisok.html" target="_blank" title="Демонстрация"></a></span><span class="vk"><a href="http://vkontakte.ru/topic-29488579_25593286" target="_blank" title="Обсудить статью ВКонтакте"></a></span><span style="clear: both"></span></div>
]]></content:encoded>
			<wfw:commentRss>http://jemand.ru/vypadayushhij-vverx-spisok/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Перекрывающиеся кнопки в меню на CSS</title>
		<link>http://jemand.ru/perekryvayushhiesya-knopki-v-menyu-na-css/</link>
		<comments>http://jemand.ru/perekryvayushhiesya-knopki-v-menyu-na-css/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 19:27:02 +0000</pubDate>
		<dc:creator>Jemand</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[li]]></category>
		<category><![CDATA[ul]]></category>
		<category><![CDATA[Горизонтальное меню]]></category>
		<category><![CDATA[Перекрывающиеся кнопки]]></category>

		<guid isPermaLink="false">http://jemand.ru/?p=647</guid>
		<description><![CDATA[1. CSS ul { font-family: Georgia; list-style-type: none; font-size: 14px; color: #fff; height: 50px; width: 510px; margin: 0 auto; padding-top: 15px; } ul li { float: left; padding: 1px; text-align: center; } ul li a { float: left; display: block; background: #0094D6; text-decoration: none; color: #fff; position: relative; } ul li a:hover { background: #FF7700; [...]]]></description>
			<content:encoded><![CDATA[<p><span class="point">1. CSS</span></p>
<pre><code>ul {
	font-family: Georgia;
	list-style-type: none;
	font-size: 14px;
	color: #fff;
	height: 50px;
	width: 510px;
	margin: 0 auto;
	padding-top: 15px;
	}
ul li {
	float: left;
	padding: 1px;
	text-align: center;
	}
ul li a {
	float: left;
	display: block;
	background: #0094D6;
	text-decoration: none;
	color: #fff;
	position: relative;
	}
ul li a:hover {
	background: #FF7700;
	z-index: 10;
	margin: 0 -10px;
	top: -10px;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	}
ul li a span {
	float: left;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: #fff;
	width: 100px;
	cursor: pointer;
	}
ul li a:hover span {
	width: 120px;
	padding: 20px 0;
	}
</code></pre>
<p><span class="point">2. HTML</span></p>
<pre><code>&lt;ul&gt;
	&lt;li&gt;&lt;a href="" title=""&gt;&lt;span&gt;Главная&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="" title=""&gt;&lt;span&gt;Новости&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="" title=""&gt;&lt;span&gt;Контакты&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="" title=""&gt;&lt;span&gt;Портфолио&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="" title=""&gt;&lt;span&gt;Форум&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</code></pre>
<p><a href="http://jemand.ru/examples/perekryvayushhiesya-knopki-v-menyu-na-css.html" target="_blank"><span class="demo">Демо</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jemand.ru/perekryvayushhiesya-knopki-v-menyu-na-css/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

