<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Prototype</title>
		<link>http://prototype.ucoz.ua/</link>
		<description></description>
		<lastBuildDate>Thu, 08 Aug 2013 08:12:00 GMT</lastBuildDate>
		<generator>uCoz Web-Service</generator>
		<atom:link href="https://prototype.ucoz.ua/news/rss" rel="self" type="application/rss+xml" />
		
		<item>
			<title>Меняющийся фон страницы</title>
			<description>Этот скрипт меняет фоновые изображения на странице с указанным временным интервалом. Тупо меняет изображения и не содержит декоративных эффектов.</description>
			<content:encoded>&lt;p&gt;Зеленым цветом заданы адреса изображений, которые по очереди должны появляться на фоне страницы. Изображений может быть сколько угодно, однако необходимо учитывать, что их загрузка может забрать у посетителей время, поэтому рекомендуется либо использовать мало легких по весу изображений, либо заранее подгружать изображения в невидимом блоке.&lt;/p&gt;
&lt;p&gt;Синим указан временной интервал смены изображений в милисекундах.&lt;/p&gt;
&lt;code&gt;
&lt;script type=&quot;text/javascript&quot;&amp;gt;&lt;br /&gt;
var images = [&lt;span style=&quot;color:green;&quot;&gt;&apos;image1.jpg&apos;, &apos;image2.jpg&apos;, &apos;image3.jpg&apos;&lt;/span&gt;];&lt;br /&gt;
var i = 0;&lt;br /&gt;
setInterval(function(){&lt;br /&gt;
$(&apos;body&apos;).css(&apos;background-image&apos;, function() {&lt;br /&gt;
if (i &gt;= images.length) { i=0; } return &apos;url(&apos; + images[i++] + &apos;)&apos;; }&lt;br /&gt;
); }, &lt;span style=&quot;color:blue;&quot;&gt;5000&lt;/span&gt;);&lt;br /&gt;
&lt;/script&amp;gt;
&lt;/code&gt;</content:encoded>
			<link>https://prototype.ucoz.ua/news/menjajushhijsja_fon_stranicy/2013-08-08-27</link>
			<dc:creator>Prototype</dc:creator>
			<guid>https://prototype.ucoz.ua/news/menjajushhijsja_fon_stranicy/2013-08-08-27</guid>
			<pubDate>Thu, 08 Aug 2013 08:12:00 GMT</pubDate>
		</item>
		<item>
			<title>Ajax листалка прикрепленных изображений</title>
			<description>Листалка прикрепленных к материалу изображений для всех модулей. Выводится во всплывающем ajax окне. Работает с массивом $IMGS_ARRAY_JS$.</description>
			<content:encoded>&lt;p&gt;В модуле Онлайн Игры такая листалка изображений установлена по умолчанию, но, как выяснилось, подобные массивы, содержащие прикрепленные изображения выводятся и в других модулях. Поэтому имеет смысл подключить к сайту универсальный скрипт, который будет действовать во всех разделах сайта.&lt;/p&gt;
&lt;p&gt;Основываясь на версии скрипта одного умного человека, я решил составить нечто подобное. Пропущу скучные объяснения, которые мало кого интересуют. Приступим к установке.
Итак, во-первых, открываем Notepad и копируем туда следующее:&lt;/p&gt;

&lt;code&gt;
function showImgs(indx){&lt;br /&gt;
var bck=indx-1;&lt;br /&gt;
var nxt=indx+1;&lt;br /&gt;
if (bck&lt;0){bck=allEntImgs.length-1;}&lt;br /&gt;
if (nxt&gt;=allEntImgs.length){nxt=0;}&lt;br /&gt;
var imgs=&apos;&apos;;&lt;br /&gt;
for (var i=0;i&lt;allEntImgs.length;i++){var img=i+1;&lt;br /&gt;
if(allEntImgs[i][0].length&lt;1){continue;}&lt;br /&gt;
if (i==indx){imgs+= &apos;&lt;b class=&quot;pgSwchA&quot;&gt;&apos;+img+&apos;&lt;/b&gt; &apos;;}&lt;br /&gt;
else {imgs += &apos;&lt;a class=&quot;pgSwch&quot; href=&quot;javascript://&quot; rel=&quot;nofollow&quot; onclick=&quot;showImgs(&apos;+i+&apos;);return false;&quot;&amp;gt;&apos;+img+&apos;&lt;/a&amp;gt; &apos;;}&lt;br /&gt;
}&lt;br /&gt;
if (allEntImgs.length&gt;1){imgs = &apos;&lt;a class=&quot;pgSwch&quot; href=&quot;javascript://&quot; rel=&quot;nofollow&quot; onclick=&quot;showImgs(&apos;+bck+&apos;);return false;&quot;&amp;gt;&amp;laquo;&lt;/a&amp;gt; &apos;+imgs+&apos; &lt;a class=&quot;pgSwch&quot; href=&quot;javascript://&quot; rel=&quot;nofollow&quot; onclick=&quot;showImgs(&apos;+nxt+&apos;);return false;&quot;&amp;gt;&amp;raquo;&lt;/a&amp;gt; &apos;;}&lt;br /&gt;
var hght = parseInt(allEntImgs[indx][2]); if ($.browser.msie) { hght += 28; };&lt;br /&gt;
_picsCont = &apos;&lt;div id=&quot;_prCont&quot; style=&quot;position:relative;width:&apos; + allEntImgs[indx][1] + &apos;px;height:&apos; + hght.toString() + &apos;px;&quot;&amp;gt;&lt;img alt=&quot;Картинка&quot; border=&quot;0&quot; width=&quot;&apos; + allEntImgs[indx][1] + &apos;&quot; height=&quot;&apos; + allEntImgs[indx][2] + &apos;&quot; src=&quot;&apos; + allEntImgs[indx][0] + &apos;&quot;/&amp;gt;&lt;div style=&quot;text-align:center; padding:5px 0px 2px 0px;&quot;&amp;gt;&apos;+imgs+&apos;&lt;/div&amp;gt;&lt;/div&amp;gt;&apos;;&lt;br /&gt;
new _uWnd(&apos;wnd_prv&apos;,&quot;Photo&quot;,400,400,{popup:1,waitimages:300000,autosizewidth:1,autosize:1,resize:0,fadetype:1,align:&apos;center&apos;,min:0,max:0,minh:400,minw:400},_picsCont);&lt;br /&gt;
}&lt;/code&gt;</content:encoded>
			<link>https://prototype.ucoz.ua/news/ajax_listalka_prikreplennykh_izobrazhenij/2013-02-14-26</link>
			<dc:creator>Медвед</dc:creator>
			<guid>https://prototype.ucoz.ua/news/ajax_listalka_prikreplennykh_izobrazhenij/2013-02-14-26</guid>
			<pubDate>Thu, 14 Feb 2013 10:05:45 GMT</pubDate>
		</item>
		<item>
			<title>CSS 3D Image Gallery</title>
			<description>In this experiment we will create a little gallery using CSS 3D transforms and an advanced javascript with jQuery framework.</description>
			<content:encoded>Please note that the CSS 3D transforms effects will only work in Webkit browsers (Chrome, Safari). &lt;br /&gt;&lt;br /&gt; &lt;b&gt;HTML&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; &lt;div class=&quot;showcase&quot;&gt; &lt;br /&gt; &lt;div class=&quot;inside&quot;&gt; &lt;br /&gt; &lt;a href=&quot;#&quot; class=&quot;active&quot;&gt;&lt;img src=&quot;assets/img1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img2.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img3.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img4.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img5.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img6.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img7.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img8.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img9.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img10.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;div class=&quot;helper&quot;&gt; &lt;br /&gt; &lt;a href=&quot;#&quot; class=&quot;prev&quot;&gt;Previous&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot; class=&quot;next&quot;&gt;Next&lt;/a&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;b&gt;CSS&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; .showcase { &lt;br /&gt; width:500px; &lt;br /&gt; height:500px; &lt;br /&gt; position:absolute; &lt;br /&gt; top:50%; &lt;br /&gt; left:50%; &lt;br /&gt; margin:-250px 0 0 -250px; &lt;br /&gt; overflow:hidden; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .showcase .inside { &lt;br /&gt; position:absolute; &lt;br /&gt; top:50%; &lt;br /&gt; left:0; &lt;br /&gt; height:320px; &lt;br /&gt; width:320px; &lt;br /&gt; margin-top:-160px; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .showcase .inside a { &lt;br /&gt; display:block; &lt;br /&gt; position:absolute; &lt;br /&gt; top:0; &lt;br /&gt; left:0; &lt;br /&gt; width:320px; &lt;br /&gt; height:320px; &lt;br /&gt; overflow:hidden; &lt;br /&gt; -webkit-transform-style: preserve-3d; &lt;br /&gt; -webkit-transform: perspective(300px&amp;#41; rotateY(-20deg&amp;#41;; &lt;br /&gt; -webkit-transition: all .5s linear; &lt;br /&gt; -webkit-box-shadow: 0 0 10px #555; &lt;br /&gt; box-shadow: 0 0 10px 2px #111; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .helper a { &lt;br /&gt; position:fixed; &lt;br /&gt; display:block; &lt;br /&gt; width:64px; &lt;br /&gt; height:64px; &lt;br /&gt; text-indent:-9999px; &lt;br /&gt; outline:none; &lt;br /&gt; background-repeat:no-repeat; &lt;br /&gt; top:50%; &lt;br /&gt; margin-top:-32px; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .helper .prev { &lt;br /&gt; left:1%; &lt;br /&gt; background-image:url(../images/prev.jpg&amp;#41;; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .helper .next { &lt;br /&gt; right:1%; &lt;br /&gt; background-image:url(../images/next.jpg&amp;#41;; &lt;br /&gt; } &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;b&gt;JavaScript&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; var P = { &lt;br /&gt; init: function(&amp;#41;{ &lt;br /&gt; this._globals(&amp;#41;; &lt;br /&gt; this.position(&amp;#41;; &lt;br /&gt; this.events.init(&amp;#41;; &lt;br /&gt; }, &lt;br /&gt; _globals: function(&amp;#41;{ &lt;br /&gt; S = $(&apos;.showcase&apos;&amp;#41;, &lt;br /&gt; H = $(&apos;.helper&apos;&amp;#41;, &lt;br /&gt; A = S.find(&apos;.inside&apos;&amp;#41;.children(&apos;a&apos;&amp;#41;; &lt;br /&gt; }, &lt;br /&gt; _transform: function(css&amp;#41;{ &lt;br /&gt; var arr = &amp;#91;]; &lt;br /&gt; for (i in css&amp;#41;{ &lt;br /&gt; var c = css&amp;#91;i]; &lt;br /&gt; arr.push(i+&apos;(&apos;+c+&apos;&amp;#41;&apos;&amp;#41;; &lt;br /&gt; } &lt;br /&gt; var css3d = arr.join(&apos; &apos;&amp;#41;; &lt;br /&gt; return { &lt;br /&gt; &apos;-webkit-transform&apos;: css3d &lt;br /&gt; } &lt;br /&gt; }, &lt;br /&gt; _loop: function(element&amp;#41;{ &lt;br /&gt; var z = A.length; &lt;br /&gt; element.each(function(i&amp;#41;{ &lt;br /&gt; var t = $(this&amp;#41;, &lt;br /&gt; scale = (100-i*2&amp;#41;/100, &lt;br /&gt; css = { &lt;br /&gt; left: 10*i, &lt;br /&gt; &apos;-webkit-transform&apos;: &apos;perspective(300px&amp;#41; rotateY(-20deg&amp;#41; scale(&apos;+scale+&apos;&amp;#41;&apos; &lt;br /&gt; } &lt;br /&gt; if (element === A&amp;#41;{ &lt;br /&gt; css.zIndex = z--; &lt;br /&gt; } &lt;br /&gt; t.css(css&amp;#41;; &lt;br /&gt; }&amp;#41;; &lt;br /&gt; }, &lt;br /&gt; position: function(&amp;#41;{ &lt;br /&gt; this._loop(A&amp;#41;; &lt;br /&gt; }, &lt;br /&gt; events: { &lt;br /&gt; init: function(&amp;#41;{ &lt;br /&gt; this.prev(&amp;#41;; &lt;br /&gt; this.next(&amp;#41;; &lt;br /&gt; }, &lt;br /&gt; control: function(control&amp;#41;{ &lt;br /&gt; var active = A.filter(&apos;.active&apos;&amp;#41;, name = &apos;active&apos;; &lt;br /&gt; if (control == &apos;prev&apos;&amp;#41;{ &lt;br /&gt; var a = active.prev(&apos;a&apos;&amp;#41;, &lt;br /&gt; all = a.nextAll(&apos;a&apos;&amp;#41;.andSelf(&amp;#41;, &lt;br /&gt; transform = { &lt;br /&gt; perspective: &apos;300px&apos;, &lt;br /&gt; rotateY: &apos;-20deg&apos;, &lt;br /&gt; translateY: &apos;0&apos;, &lt;br /&gt; scale: &apos;1&apos; &lt;br /&gt; } &lt;br /&gt; } else if (control == &apos;next&apos;&amp;#41;{ &lt;br /&gt; var a = active.next(&apos;a&apos;&amp;#41;, &lt;br /&gt; all = active.nextAll(&apos;a&apos;&amp;#41;, &lt;br /&gt; transform = { &lt;br /&gt; perspective: &apos;300px&apos;, &lt;br /&gt; rotateY: &apos;-20deg&apos;, &lt;br /&gt; translateY: &apos;600px&apos; &lt;br /&gt; } &lt;br /&gt; } &lt;br /&gt; if (a.length&amp;#41;{ &lt;br /&gt; var css3d = P._transform(transform&amp;#41;; &lt;br /&gt; active.css(css3d&amp;#41;; &lt;br /&gt; P._loop(all&amp;#41;; &lt;br /&gt; A.removeClass(name&amp;#41;; &lt;br /&gt; a.addClass(name&amp;#41;; &lt;br /&gt; } &lt;br /&gt; }, &lt;br /&gt; prev: function(&amp;#41;{ &lt;br /&gt; H.find(&apos;.prev&apos;&amp;#41;.click(function(&amp;#41;{ &lt;br /&gt; P.events.control(&apos;prev&apos;&amp;#41;; &lt;br /&gt; return false; &lt;br /&gt; }&amp;#41;; &lt;br /&gt; }, &lt;br /&gt; next: function(&amp;#41;{ &lt;br /&gt; H.find(&apos;.next&apos;&amp;#41;.click(function(&amp;#41;{ &lt;br /&gt; P.events.control(&apos;next&apos;&amp;#41;; &lt;br /&gt; return false; &lt;br /&gt; }&amp;#41;; &lt;br /&gt; } &lt;br /&gt; } &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; $(function(&amp;#41;{ P.init(&amp;#41;; }&amp;#41;; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<link>https://prototype.ucoz.ua/news/css_3d_image_gallery/2012-11-04-25</link>
			<dc:creator>JuicyBottom</dc:creator>
			<guid>https://prototype.ucoz.ua/news/css_3d_image_gallery/2012-11-04-25</guid>
			<pubDate>Sat, 03 Nov 2012 21:06:38 GMT</pubDate>
		</item>
		<item>
			<title>Custom preloader effect</title>
			<description>In this experiment we&apos;ll create a custom preloader animation effect.</description>
			<content:encoded>&lt;b&gt;HTML&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; &lt;div class=&quot;preloader&quot;&gt; &lt;br /&gt; &lt;div class=&quot;circle&quot;&gt;&lt;/div&gt; &lt;br /&gt; &lt;div class=&quot;percent&quot;&gt;0%&lt;/div&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;div class=&quot;end&quot;&gt;Thank you for your patience!&lt;/div&gt; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;b&gt;CSS&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; @-webkit-keyframes pulse { &lt;br /&gt; from { -webkit-box-shadow: 0 0 50px #fff; } &lt;br /&gt; 50% { -webkit-box-shadow: 0 0 100px #fff; } &lt;br /&gt; to { -webkit-box-shadow: 0 0 50px #fff; } &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .preloader { &lt;br /&gt; position:absolute; &lt;br /&gt; top:50%; &lt;br /&gt; left:50%; &lt;br /&gt; z-index:2; &lt;br /&gt; width:30px; &lt;br /&gt; height:30px; &lt;br /&gt; margin:-15px 0 0 -15px; &lt;br /&gt; background:rgba(0, 0, 0, .2&amp;#41;; &lt;br /&gt; -moz-border-radius:30px; &lt;br /&gt; -webkit-border-radius:30px; &lt;br /&gt; border-radius:30px; &lt;br /&gt; -webkit-animation-name:pulse; &lt;br /&gt; -webkit-animation-duration:2s; &lt;br /&gt; -webkit-animation-iteration-count:infinite; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .preloader .percent { &lt;br /&gt; display:block; &lt;br /&gt; position:absolute; &lt;br /&gt; left:50%; &lt;br /&gt; bottom:-50px; &lt;br /&gt; width:100px; &lt;br /&gt; margin-left:-50px; &lt;br /&gt; text-align:center; &lt;br /&gt; font-family:&apos;PT Sans Narrow&apos;, sans-serif; &lt;br /&gt; font-size:22px; &lt;br /&gt; color:#fff; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .preloader .circle { &lt;br /&gt; position:absolute; &lt;br /&gt; top:50%; &lt;br /&gt; left:50%; &lt;br /&gt; width:20px; &lt;br /&gt; height:20px; &lt;br /&gt; margin:-10px 0 0 -10px; &lt;br /&gt; background:#fff; &lt;br /&gt; opacity:0; &lt;br /&gt; -moz-border-radius:20px; &lt;br /&gt; -webkit-border-radius:20px; &lt;br /&gt; border-radius:20px; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .preloader span { &lt;br /&gt; background:#fff; &lt;br /&gt; position:absolute; &lt;br /&gt; width:10px; &lt;br /&gt; height:10px; &lt;br /&gt; } &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;b&gt;JavaScript&lt;/b&gt; &lt;br /&gt; jQuery Easing Plugin (version 1.3) is required! &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; $(function(&amp;#41;{ &lt;br /&gt; var preloader = $(&apos;.preloader&apos;&amp;#41;, &lt;br /&gt; end = $(&apos;.end&apos;&amp;#41;, &lt;br /&gt; pw = preloader.width(&amp;#41;, &lt;br /&gt; percent = preloader.find(&apos;.percent&apos;&amp;#41;, &lt;br /&gt; circle = preloader.find(&apos;.circle&apos;&amp;#41;, &lt;br /&gt; l = 8, j = 0; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; var timer = setInterval(function(&amp;#41;{ &lt;br /&gt; var p = parseInt((100/l&amp;#41;*j&amp;#41;; &lt;br /&gt; for (i=0;i&lt;15;i++&amp;#41;{ &lt;br /&gt; preloader.append($(&apos;&lt;span /&gt;&apos;&amp;#41;&amp;#41;; &lt;br /&gt; } &lt;br /&gt; var span = preloader.find(&apos;span&apos;&amp;#41;; &lt;br /&gt; span.each(function(&amp;#41;{ &lt;br /&gt; var t = $(this&amp;#41;, &lt;br /&gt; x = random(-250, 250&amp;#41;, &lt;br /&gt; y = random(-250, 250&amp;#41;, &lt;br /&gt; d = random(10, 20&amp;#41;, &lt;br /&gt; css = { &lt;br /&gt; top: y, &lt;br /&gt; left: x, &lt;br /&gt; width: d, &lt;br /&gt; height: d, &lt;br /&gt; &apos;-moz-border-radius&apos;: d, &lt;br /&gt; &apos;-webkit-border-radius&apos;: d, &lt;br /&gt; &apos;border-radius&apos;: d, &lt;br /&gt; opacity: .7 &lt;br /&gt; }, &lt;br /&gt; animation = { &lt;br /&gt; top: pw/2-d/2, &lt;br /&gt; left: pw/2-d/2, &lt;br /&gt; opacity: 0 &lt;br /&gt; } &lt;br /&gt; t.css(css&amp;#41;.stop(true, true&amp;#41;.animate(animation, 900, &apos;easeInBack&apos;, function(&amp;#41;{ &lt;br /&gt; t.remove(&amp;#41;; &lt;br /&gt; var css = { &lt;br /&gt; opacity: p/100 &lt;br /&gt; } &lt;br /&gt; circle.css(css&amp;#41;; &lt;br /&gt; }&amp;#41;; &lt;br /&gt; }&amp;#41;; &lt;br /&gt; percent.text(p+&apos;%&apos;&amp;#41; &lt;br /&gt; if (p &gt; 99&amp;#41;{ &lt;br /&gt; clearInterval(timer&amp;#41;; &lt;br /&gt; setTimeout(function(&amp;#41;{ &lt;br /&gt; preloader.fadeOut(400&amp;#41;; &lt;br /&gt; end.fadeIn(&amp;#41;; &lt;br /&gt; }, 1500&amp;#41;; &lt;br /&gt; } &lt;br /&gt; j++; &lt;br /&gt; }, 1000&amp;#41;; &lt;br /&gt; function random(min, max&amp;#41;{ &lt;br /&gt; return Math.floor((Math.random(&amp;#41;*(max-min+1&amp;#41;&amp;#41;+min&amp;#41;; &lt;br /&gt; } &lt;br /&gt; }&amp;#41;; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<link>https://prototype.ucoz.ua/news/custom_preloader_effect/2012-11-04-24</link>
			<dc:creator>JuicyBottom</dc:creator>
			<guid>https://prototype.ucoz.ua/news/custom_preloader_effect/2012-11-04-24</guid>
			<pubDate>Sat, 03 Nov 2012 21:04:10 GMT</pubDate>
		</item>
		<item>
			<title>Horizontal bar graph</title>
			<description>Today we&apos;ll create an animated, horizontal bar graph using jQuery, CSS3 properties (such as: gradients, border-radius, rgba) and CSS3 transitions.</description>
			<content:encoded>&lt;b&gt;HTML&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; &lt;div class=&quot;bar&quot;&gt; &lt;br /&gt; &lt;div class=&quot;percent&quot;&gt; &lt;br /&gt; &lt;span style=&quot;width: 100%;&quot;&gt;&lt;/span&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;div class=&quot;circle&quot;&gt; &lt;br /&gt; &lt;span&gt;0%&lt;/span&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;div class=&quot;text&quot;&gt; &lt;br /&gt; &lt;input type=&quot;text&quot; class=&quot;input&quot; value=&quot;0&quot; /&gt; &lt;br /&gt; &lt;small&gt;Please change a value and hit the enter key.&lt;/small&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;/div&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;b&gt;CSS&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; .bar { &lt;br /&gt; float:left; &lt;br /&gt; clear:both; &lt;br /&gt; width:100%; &lt;br /&gt; height:40px; &lt;br /&gt; position:relative; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .bar .percent { &lt;br /&gt; background:#2caedd; &lt;br /&gt; background:-moz-linear-gradient(left, #2caedd 0%, #86dd2a 28%, #e0d72a 46%, #e8902c 66%, #ed2d2d 86%, #ff0000 100%&amp;#41;; &lt;br /&gt; background:-webkit-gradient(linear, left top, right top, color-stop(0%,#2caedd&amp;#41;, color-stop(28%,#86dd2a&amp;#41;, color-stop(46%,#e0d72a&amp;#41;, color-stop(66%,#e8902c&amp;#41;, color-stop(86%,#ed2d2d&amp;#41;, color-stop(100%,#ff0000&amp;#41;&amp;#41;; &lt;br /&gt; background:-webkit-linear-gradient(left, #2caedd 0%,#86dd2a 28%,#e0d72a 46%,#e8902c 66%,#ed2d2d 86%,#ff0000 100%&amp;#41;; &lt;br /&gt; background:-o-linear-gradient(left, #2caedd 0%,#86dd2a 28%,#e0d72a 46%,#e8902c 66%,#ed2d2d 86%,#ff0000 100%&amp;#41;; &lt;br /&gt; background:-ms-linear-gradient(left, #2caedd 0%,#86dd2a 28%,#e0d72a 46%,#e8902c 66%,#ed2d2d 86%,#ff0000 100%&amp;#41;; &lt;br /&gt; background:linear-gradient(left, #2caedd 0%,#86dd2a 28%,#e0d72a 46%,#e8902c 66%,#ed2d2d 86%,#ff0000 100%&amp;#41;; &lt;br /&gt; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=&apos;#2caedd&apos;, endColorstr=&apos;#ff0000&apos;, GradientType=1&amp;#41;; &lt;br /&gt; float:left; &lt;br /&gt; width:100%; &lt;br /&gt; height:40px; &lt;br /&gt; position:relative; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .bar .percent span { &lt;br /&gt; display:block; &lt;br /&gt; position:absolute; &lt;br /&gt; top:0; &lt;br /&gt; right:0; &lt;br /&gt; z-index:2; &lt;br /&gt; width:100%; &lt;br /&gt; height:40px; &lt;br /&gt; background:rgba(255, 255, 255, .7&amp;#41;; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .bar .circle { &lt;br /&gt; display:block; &lt;br /&gt; position:absolute; &lt;br /&gt; top:50%; &lt;br /&gt; left:0; &lt;br /&gt; z-index:3; &lt;br /&gt; margin:-40px 0 0 -40px; &lt;br /&gt; width:80px; &lt;br /&gt; height:80px; &lt;br /&gt; line-height:80px; &lt;br /&gt; text-align:center; &lt;br /&gt; font-size:20px; &lt;br /&gt; font-family:&apos;PT Sans Narrow&apos;, sans-serif; &lt;br /&gt; color:#fff; &lt;br /&gt; background:rgba(0, 0, 0, .1&amp;#41;; &lt;br /&gt; -moz-border-radius:40px; &lt;br /&gt; -webkit-border-radius:40px; &lt;br /&gt; border-radius:40px; &lt;br /&gt; -webkit-transition:all 1s ease; &lt;br /&gt; -moz-transition:all 1s ease; &lt;br /&gt; -o-transition:all 1s ease; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .bar .circle.rotate { &lt;br /&gt; -webkit-transform:rotate(1080deg&amp;#41;; &lt;br /&gt; -moz-transform:rotate(1080deg&amp;#41;; &lt;br /&gt; -o-transform:rotate(1080deg&amp;#41;; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .bar .circle span { &lt;br /&gt; display:inline-block; &lt;br /&gt; width:70px; &lt;br /&gt; height:70px; &lt;br /&gt; line-height:70px; &lt;br /&gt; background:rgba(0, 0, 0, .3&amp;#41;; &lt;br /&gt; -moz-border-radius:35px; &lt;br /&gt; -webkit-border-radius:35px; &lt;br /&gt; border-radius:35px; &lt;br /&gt; } &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;b&gt;JavaScript&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; $(function(&amp;#41;{ &lt;br /&gt; var input = $(&apos;.input&apos;&amp;#41;, &lt;br /&gt; bar = $(&apos;.bar&apos;&amp;#41;, &lt;br /&gt; bw = bar.width(&amp;#41;, &lt;br /&gt; percent = bar.find(&apos;.percent&apos;&amp;#41;, &lt;br /&gt; circle = bar.find(&apos;.circle&apos;&amp;#41;, &lt;br /&gt; ps = percent.find(&apos;span&apos;&amp;#41;, &lt;br /&gt; cs = circle.find(&apos;span&apos;&amp;#41;, &lt;br /&gt; name = &apos;rotate&apos;; &lt;br /&gt; input.on(&apos;keydown&apos;, function(e&amp;#41;{ &lt;br /&gt; if (e.keyCode == 13&amp;#41;{ &lt;br /&gt; var t = $(this&amp;#41;, val = t.val(&amp;#41;; &lt;br /&gt; if (val &gt;=0 &amp;&amp; val &lt;= 100&amp;#41;{ &lt;br /&gt; var w = 100-val, pw = (bw*w&amp;#41;/100, &lt;br /&gt; pa = { &lt;br /&gt; width: w+&apos;%&apos; &lt;br /&gt; }, &lt;br /&gt; cw = (bw-pw&amp;#41;/2, &lt;br /&gt; ca = { &lt;br /&gt; left: cw &lt;br /&gt; } &lt;br /&gt; ps.animate(pa&amp;#41;; &lt;br /&gt; cs.text(val+&apos;%&apos;&amp;#41;; &lt;br /&gt; circle.animate(ca, function(&amp;#41;{ &lt;br /&gt; circle.removeClass(name&amp;#41; &lt;br /&gt; }&amp;#41;.addClass(name&amp;#41;;&amp;nbsp;&amp;nbsp;&lt;br /&gt; } else { &lt;br /&gt; alert(&apos;range: 0 - 100&apos;&amp;#41;; &lt;br /&gt; t.val(&apos;&apos;&amp;#41;; &lt;br /&gt; } &lt;br /&gt; } &lt;br /&gt; }&amp;#41;; &lt;br /&gt; }&amp;#41;; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<link>https://prototype.ucoz.ua/news/horizontal_bar_graph/2012-11-04-23</link>
			<dc:creator>JuicyBottom</dc:creator>
			<guid>https://prototype.ucoz.ua/news/horizontal_bar_graph/2012-11-04-23</guid>
			<pubDate>Sat, 03 Nov 2012 21:00:41 GMT</pubDate>
		</item>
		<item>
			<title>CSS3 Blur Menu</title>
			<description>In this experiment, I want to show you how to achieve a simple blur effect applied on menu elements.</description>
			<content:encoded>&lt;b&gt;HTML&lt;/b&gt; &lt;br /&gt; The first step is to lay down the HTML markup. Our structure is very simple. &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; &lt;div class=&quot;menu&quot;&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;Graphics&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;Inspiration&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;Coding&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;Design&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;Typography&lt;/a&gt; &lt;br /&gt; &lt;a href=&quot;#&quot;&gt;Freebies&lt;/a&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;b&gt;CSS&lt;/b&gt; &lt;br /&gt; In next step we&apos;ll add some CSS style. &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; .menu { &lt;br /&gt; position:absolute; &lt;br /&gt; top:50%; &lt;br /&gt; left:300px; &lt;br /&gt; margin-top:-140px; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .menu a { &lt;br /&gt; display:block; &lt;br /&gt; text-decoration:none; &lt;br /&gt; font-family:&apos;PT Sans Narrow&apos;, sans-serif; &lt;br /&gt; font-size:30px; &lt;br /&gt; position:relative; &lt;br /&gt; height:44px; &lt;br /&gt; color:#eee; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .menu a span { &lt;br /&gt; position:absolute; &lt;br /&gt; top:0; &lt;br /&gt; left:0; &lt;br /&gt; -webkit-transition:all .5s ease; &lt;br /&gt; -moz-transition:all .5s ease; &lt;br /&gt; -o-transition:all .5s ease; &lt;br /&gt; -ms-transition:all .5s ease; &lt;br /&gt; transition:all .5s ease; &lt;br /&gt; /* add the transition to all properties. */ &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .menu .shadow { &lt;br /&gt; text-shadow: 0 0 4px #fff; &lt;br /&gt; } &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; .menu .blur { &lt;br /&gt; color:#2b2b2b; &lt;br /&gt; text-shadow:0 0 4px #2b2b2b; &lt;br /&gt; opacity:.6; &lt;br /&gt; } &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;b&gt;JavaScript&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; $(function(&amp;#41;{ &lt;br /&gt; var menu = $(&apos;.menu&apos;&amp;#41;, &lt;br /&gt; a = menu.find(&apos;a&apos;&amp;#41;; &lt;br /&gt; a.wrapInner($(&apos;&lt;span /&gt;&apos;&amp;#41;&amp;#41;; &lt;br /&gt; // include the text in &lt;span /&gt; element. &lt;br /&gt; a.each(function(&amp;#41;{ &lt;br /&gt; var t = $(this&amp;#41;, span = t.find(&apos;span&apos;&amp;#41;; &lt;br /&gt; for (i=0;i&lt;5;i++&amp;#41;{ &lt;br /&gt; span.clone(&amp;#41;.appendTo(t&amp;#41;; &lt;br /&gt; } &lt;br /&gt; // add new &lt;span /&gt; elements to get a strong blur effect. &lt;br /&gt; }&amp;#41;; &lt;br /&gt; a.hover(function(&amp;#41;{ &lt;br /&gt; var t = $(this&amp;#41;, s = t.siblings(&apos;a&apos;&amp;#41;; &lt;br /&gt; t.toggleClass(&apos;shadow&apos;&amp;#41;; &lt;br /&gt; s.toggleClass(&apos;blur&apos;&amp;#41;; &lt;br /&gt; }&amp;#41;; &lt;br /&gt; }&amp;#41;; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<link>https://prototype.ucoz.ua/news/css3_blur_menu/2012-11-04-22</link>
			<dc:creator>JuicyBottom</dc:creator>
			<guid>https://prototype.ucoz.ua/news/css3_blur_menu/2012-11-04-22</guid>
			<pubDate>Sat, 03 Nov 2012 20:58:05 GMT</pubDate>
		</item>
		<item>
			<title>Filters</title>
			<description>Filters is a jQuery plugin that allows to filter items using custom animation. You can use CSS3 transitions or just fadeIn/Out effect. Go to the demos and see how simple is that.</description>
			<content:encoded>&lt;b&gt;JavaScript&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;$(&apos;.filters&apos;&amp;#41;.filters({ &lt;br /&gt; &amp;nbsp;&amp;nbsp;filter: { &lt;br /&gt; &amp;nbsp;&amp;nbsp;name: &apos;filter&apos;, // (string&amp;#41; class name for links container &lt;br /&gt; &amp;nbsp;&amp;nbsp;element: &apos;a&apos;, // (string&amp;#41; HTML selector &lt;br /&gt; &amp;nbsp;&amp;nbsp;active: &apos;active&apos; // (string&amp;#41; class name for active element &lt;br /&gt; &amp;nbsp;&amp;nbsp;}, &lt;br /&gt; &amp;nbsp;&amp;nbsp;container: { &lt;br /&gt; &amp;nbsp;&amp;nbsp;name: &apos;container&apos;, // (string&amp;#41; class name for items container &lt;br /&gt; &amp;nbsp;&amp;nbsp;element: &apos;li&apos; // (string&amp;#41; HTML selector &lt;br /&gt; &amp;nbsp;&amp;nbsp;}, &lt;br /&gt; &amp;nbsp;&amp;nbsp;css3: { &lt;br /&gt; &amp;nbsp;&amp;nbsp;init: true, // (bool&amp;#41; use CSS3 transitions &lt;br /&gt; &amp;nbsp;&amp;nbsp;children: &apos;a&apos;, // (string&amp;#41; HTML selector (children of filter.element&amp;#41; &lt;br /&gt; &amp;nbsp;&amp;nbsp;property: &apos;all 1s ease&apos;, // (string&amp;#41; CSS3 property for transitions &lt;br /&gt; &amp;nbsp;&amp;nbsp;transform: { // (object&amp;#41; CSS3 transform properties, please use: scale, rotate, skew &lt;br /&gt; &amp;nbsp;&amp;nbsp;scale: &apos;0&apos; &lt;br /&gt; &amp;nbsp;&amp;nbsp;} &lt;br /&gt; &amp;nbsp;&amp;nbsp;}, &lt;br /&gt; &amp;nbsp;&amp;nbsp;move: { &lt;br /&gt; &amp;nbsp;&amp;nbsp;init: true, // (bool&amp;#41; set the true if you want fixed position of elements &lt;br /&gt; &amp;nbsp;&amp;nbsp;easing: &apos;linear&apos;, // (string&amp;#41; set the easing of the animation, you can also use: jQuery Easing plugin: http&amp;#58;//gsgd.co.uk/sandbox/jquery/easing/ &lt;br /&gt; &amp;nbsp;&amp;nbsp;duration: 500 // (int&amp;#41; set the speed of the easing animation in milliseconds &lt;br /&gt; &amp;nbsp;&amp;nbsp;}, &lt;br /&gt; &amp;nbsp;&amp;nbsp;fade: { &lt;br /&gt; &amp;nbsp;&amp;nbsp;duration: &amp;#91;500, 500], // (array&amp;#41; set the speed of the fading animation in milliseconds - &amp;#91;fadeOut, fadeIn] &lt;br /&gt; &amp;nbsp;&amp;nbsp;opacity: &amp;#91;0, 1] // (array&amp;#41; set the opacity of elements &lt;br /&gt; &amp;nbsp;&amp;nbsp;}, &lt;br /&gt; &amp;nbsp;&amp;nbsp;fixed: false, // (bool&amp;#41; setthe true if you want adjust height of the container &lt;br /&gt; &amp;nbsp;&amp;nbsp;onclick: function(filter, element&amp;#41;{} &lt;br /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt; &amp;nbsp;&amp;nbsp;}&amp;#41;; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;HTML&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;div class=&quot;filters&quot;&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;div class=&quot;filter&quot;&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;#&quot; rel=&quot;collection_name_1&quot;&gt;Collection #1&lt;/a&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;#&quot; rel=&quot;collection_name_2&quot;&gt;Collection #2&lt;/a&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;#&quot; rel=&quot;all&quot;&gt;All&lt;/a&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;/div&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;div class=&quot;container&quot;&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;ul&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;li class=&quot;collection_name_1&quot;&gt; .. &lt;/li&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;li class=&quot;collection_name_2&quot;&gt; .. &lt;/li&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;li class=&quot;collection_name_1&quot;&gt; .. &lt;/li&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;!-- etc. --&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;/ul&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;/div&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;/div&gt; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<link>https://prototype.ucoz.ua/news/filters/2012-11-04-21</link>
			<dc:creator>JuicyBottom</dc:creator>
			<guid>https://prototype.ucoz.ua/news/filters/2012-11-04-21</guid>
			<pubDate>Sat, 03 Nov 2012 20:32:19 GMT</pubDate>
		</item>
		<item>
			<title>Scroller</title>
			<description>Scroller is a plugin for jQuery that allows display images in the form of round markers</description>
			<content:encoded>&lt;b&gt;JavaScript&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;$(&apos;.scroller&apos;&amp;#41;.scroller({ &lt;br /&gt; &amp;nbsp;&amp;nbsp;element: &apos;a&apos;, // (string&amp;#41; HTML element &lt;br /&gt; &amp;nbsp;&amp;nbsp;direction: &apos;horizontal&apos;, // (string&amp;#41; available options: horizontal, vertical &lt;br /&gt; &amp;nbsp;&amp;nbsp;container: { &lt;br /&gt; &amp;nbsp;&amp;nbsp;name: &apos;inside&apos;, // (string&amp;#41; class name for the container &lt;br /&gt; &amp;nbsp;&amp;nbsp;easing: &apos;easeOutBack&apos;, // (string&amp;#41; set the easing of the animation, required: jQuery Easing plugin: http&amp;#58;//gsgd.co.uk/sandbox/jquery/easing/ &lt;br /&gt; &amp;nbsp;&amp;nbsp;duration: 800 // (int&amp;#41; set the speed of the easing animation in milliseconds &lt;br /&gt; &amp;nbsp;&amp;nbsp;}, &lt;br /&gt; &amp;nbsp;&amp;nbsp;options: { &lt;br /&gt; &amp;nbsp;&amp;nbsp;margin: -20, // (int&amp;#41; set the margin for each element &lt;br /&gt; &amp;nbsp;&amp;nbsp;zoom: 1.5, // (int&amp;#41; zoom multiplier &lt;br /&gt; &amp;nbsp;&amp;nbsp;easing: &amp;#91;&apos;easeOutBack&apos;, &apos;easeOutBounce&apos;], &lt;br /&gt; &amp;nbsp;&amp;nbsp;duration: &amp;#91;300, 500] &lt;br /&gt; &amp;nbsp;&amp;nbsp;}, &lt;br /&gt; &amp;nbsp;&amp;nbsp;onclick: function(a, img&amp;#41;{}, &lt;br /&gt; &amp;nbsp;&amp;nbsp;onmouseover: function(a, img&amp;#41;{}, &lt;br /&gt; &amp;nbsp;&amp;nbsp;onmouseout: function(a, img&amp;#41;{} &lt;br /&gt; &amp;nbsp;&amp;nbsp;}&amp;#41;; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt; &lt;b&gt;HTML&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;div class=&quot;scroller&quot;&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;div class=&quot;inside&quot;&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img2.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img3.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;a href=&quot;#&quot;&gt;&lt;img src=&quot;assets/img4.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;!-- etc. --&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;/div&gt; &lt;br /&gt; &amp;nbsp;&amp;nbsp;&lt;/div&gt; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<link>https://prototype.ucoz.ua/news/scroller/2012-11-04-20</link>
			<dc:creator>JuicyBottom</dc:creator>
			<guid>https://prototype.ucoz.ua/news/scroller/2012-11-04-20</guid>
			<pubDate>Sat, 03 Nov 2012 20:29:36 GMT</pubDate>
		</item>
		<item>
			<title>Мобильная карта на jQuery</title>
			<description>Мобильная карта это легкий (всего 6KB), полнонастраиваемый плагин jQuery, который превращает обычное изображения в функциональную карту путем наложения динамических элементов, таких как маркеры (пометки на карте). Как и в Google Maps, вы можете создавать свои собственные пометки с уникальными иконками, добавлять информацию о местности к некоторым маркерам, а также передвигать карту мышкой.</description>
			<content:encoded>&lt;b&gt;JavaScript&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;$(&apos;.map&apos;&amp;#41;.craftmap({ &lt;br /&gt;&amp;nbsp;&amp;nbsp;cookies: false, // (bool&amp;#41; remember position &lt;br /&gt;&amp;nbsp;&amp;nbsp;fullscreen: false, // (bool&amp;#41; fullscreen &lt;br /&gt;&amp;nbsp;&amp;nbsp;container: { &lt;br /&gt;&amp;nbsp;&amp;nbsp;name: &apos;imgContent&apos; // (string&amp;#41; class name for an image container &lt;br /&gt;&amp;nbsp;&amp;nbsp;}, &lt;br /&gt;&amp;nbsp;&amp;nbsp;image: { &lt;br /&gt;&amp;nbsp;&amp;nbsp;width: 1475, // (int&amp;#41; image width &lt;br /&gt;&amp;nbsp;&amp;nbsp;height: 1200, // (int&amp;#41; image height &lt;br /&gt;&amp;nbsp;&amp;nbsp;name: &apos;imgMap&apos; // (string&amp;#41; class name for an image &lt;br /&gt;&amp;nbsp;&amp;nbsp;}, &lt;br /&gt;&amp;nbsp;&amp;nbsp;map: { &lt;br /&gt;&amp;nbsp;&amp;nbsp;position: &apos;center&apos; // (string&amp;#41; map position after loading - &apos;X Y&apos;, &apos;center&apos;, &apos;top_left&apos;, &apos;top_right&apos;, &apos;bottom_left&apos;, &apos;bottom_right&apos; &lt;br /&gt;&amp;nbsp;&amp;nbsp;}, &lt;br /&gt;&amp;nbsp;&amp;nbsp;marker: { &lt;br /&gt;&amp;nbsp;&amp;nbsp;name: &apos;marker&apos;, // (string&amp;#41; class name for a marker &lt;br /&gt;&amp;nbsp;&amp;nbsp;center: true, // (bool&amp;#41; set true to pan the map to the center &lt;br /&gt;&amp;nbsp;&amp;nbsp;popup: true, // (bool&amp;#41; set true to show a popup &lt;br /&gt;&amp;nbsp;&amp;nbsp;popup_name: &apos;popup&apos;, // (string&amp;#41; class name for popup &lt;br /&gt;&amp;nbsp;&amp;nbsp;onClick: function(marker, popup&amp;#41;{}, &lt;br /&gt;&amp;nbsp;&amp;nbsp;onClose: function(marker, popup&amp;#41;{} &lt;br /&gt;&amp;nbsp;&amp;nbsp;}, &lt;br /&gt;&amp;nbsp;&amp;nbsp;controls: { &lt;br /&gt;&amp;nbsp;&amp;nbsp;init: true, // (bool&amp;#41; set true to control a map from any place on the page &lt;br /&gt;&amp;nbsp;&amp;nbsp;name: &apos;controls&apos;, // (string&amp;#41; class name for controls container &lt;br /&gt;&amp;nbsp;&amp;nbsp;onClick: function(marker&amp;#41;{} &lt;br /&gt;&amp;nbsp;&amp;nbsp;}, &lt;br /&gt;&amp;nbsp;&amp;nbsp;preloader: { &lt;br /&gt;&amp;nbsp;&amp;nbsp;init: true, // (bool&amp;#41; set true to preload an image &lt;br /&gt;&amp;nbsp;&amp;nbsp;name: &apos;preloader&apos;, // (string&amp;#41; class name for a preload container &lt;br /&gt;&amp;nbsp;&amp;nbsp;onLoad: function(img, dimensions&amp;#41;{} &lt;br /&gt;&amp;nbsp;&amp;nbsp;} &lt;br /&gt;&amp;nbsp;&amp;nbsp;}&amp;#41;; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt; &lt;br /&gt;&lt;br /&gt; &lt;b&gt;HTML&lt;/b&gt; &lt;br /&gt; &lt;!--uzcode--&gt;&lt;div class=&quot;bbCodeBlock&quot;&gt;&lt;div class=&quot;bbCodeName&quot; style=&quot;padding-left:5px;font-weight:bold;font-size:7pt&quot;&gt;Code&lt;/div&gt;&lt;div class=&quot;codeMessage&quot; style=&quot;border:1px inset;max-height:200px;overflow:auto;height:expression(this.scrollHeight&lt;5?this.style.height:scrollHeight&gt;200?&apos;200px&apos;:&apos;&apos;+(this.scrollHeight+5)+&apos;px&apos;);&quot;&gt;&lt;!--uzc--&gt; &lt;br /&gt; &lt;div class=&quot;map&quot;&gt; &lt;br /&gt; &lt;img src=&quot;path_to_the_image.jpg&quot; class=&quot;imgMap&quot; /&gt; &lt;br /&gt; &lt;div class=&quot;marker&quot; id=&quot;ID&quot; data-coords=&quot;x, y&quot;&gt; &lt;br /&gt; &lt;!-- HTML CONTENT --&gt;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;!-- etc. --&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt; &lt;div class=&quot;controls&quot;&gt; &lt;br /&gt; &lt;a href=&quot;#&quot; rel=&quot;ID&quot;&gt;text&lt;/a&gt; &lt;br /&gt; &lt;!-- etc. --&gt; &lt;br /&gt; &lt;/div&gt; &lt;br /&gt; &lt;!--/uzc--&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--/uzcode--&gt;</content:encoded>
			<link>https://prototype.ucoz.ua/news/mobilnaja_karta_na_jquery/2012-11-04-19</link>
			<dc:creator>JuicyBottom</dc:creator>
			<guid>https://prototype.ucoz.ua/news/mobilnaja_karta_na_jquery/2012-11-04-19</guid>
			<pubDate>Sat, 03 Nov 2012 20:13:50 GMT</pubDate>
		</item>
		<item>
			<title>uCoz system messages</title>
			<description>В системе юКоз есть стандартные сообщения, которые выводятся через ajax и помогают пользователям ориентироваться на сайте. Иногда вывод этой информации пригождается и в нестандартных условиях.</description>
			<content:encoded>&lt;h3&gt;Сообщения для пользователей и модераторов&lt;/h3&gt;
&lt;code&gt;&lt;input type=&quot;button&quot; value=&quot;INFO&quot; onclick=&quot;new _uWnd(&apos;HelpWd&apos;,&apos;Helper&apos;,360,150,{align:&apos;justify&apos;,closeonesc:1},{url:&apos;&lt;span style=&quot;color:red;&quot;&gt;/index/90-7&lt;/span&gt;&apos;});return false;&quot; /&amp;gt;&lt;/code&gt;
&lt;h5&gt;/index/90-1&lt;/h5&gt;Доступ запрещен&lt;hr /&gt;Access denied&lt;hr /&gt;
&lt;h5&gt;/index/90-2&lt;/h5&gt;Доступ запрещен&lt;hr /&gt;Access denied&lt;hr /&gt;
&lt;h5&gt;/index/90-3&lt;/h5&gt;Персональный шаблон необходим только в случае, если вам нужен абсолютно другой дизайн для страницы. Максимальное количество страниц с персональным шаблоном - &lt;b&gt;20&lt;/b&gt;.&lt;hr /&gt;Personal template is necessary only if you need a completely different design for a page. Maximum number of pages with a personal template is &lt;b&gt;20&lt;/b&gt;.&lt;hr /&gt;
&lt;h5&gt;/index/90-4&lt;/h5&gt;Система автоматически будет уменьшать большие изображения до нужных размеров. При этом, нажав на изображение, посетитель сможет увидеть его в полном размере.&lt;hr /&gt;The system will automatically resize large images to the required size. To view the full-size image a user must click on the resized one.&lt;hr /&gt;
&lt;h5&gt;/index/90-5&lt;/h5&gt;&lt;p&gt;Допускаются только GIF, JPEG, PNG форматы изображения.&lt;/p&gt;&lt;p&gt;Вы можете вставлять картинки в любое место сообщения используя специальные коды $IMAGE1$, $IMAGE2$, $IMAGE3$...&lt;/p&gt;&lt;p&gt;Выравнивать картинку относительно текста можно следующим образом - $IMAGE1-left$.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;Only GIF, JPEG, PNG image formats are accepted.&lt;/p&gt;&lt;p&gt;You may insert images into any place of an entry with the help of the special codes $IMAGE1$, $IMAGE2$, $IMAGE3$...&lt;/p&gt;&lt;p&gt;An image may be aligned relative to text in the following way: $IMAGE1-left$.&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/index/90-6&lt;/h5&gt;&lt;p&gt;Материал с включенной опцией &quot;Материал недоступен для просмотра&quot; не виден гостям и другим группам пользователей, которые не имеют право редактировать или удалять данный материал. По умолчанию право просматривать подобные материалы есть у группы &quot;Администраторы&quot; и &quot;Модераторы&quot;.&lt;/p&gt;&lt;p&gt;В разделе &quot;Группы пользователей&quot; (панель управления) откорректируйте права групп, которым нужна премодерация добавляемых материалов.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;An entry with the enabled option &quot;Entry is not available for viewing&quot; is not visible for Guests and other user groups that have no permission to edit and remove this entry. &quot;Administrators&quot; and &quot;Moderators&quot; have this permission by default.&lt;/p&gt;&lt;p&gt;You can edit permissions of the groups, that need premoderation of the entries being added, in &quot;User groups&quot; section (Control Panel).&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/index/90-7&lt;/h5&gt;&lt;p&gt;&lt;b&gt;uID&lt;/b&gt; - это универсальный логин (e-mail адрес), используемый в &lt;a href=&quot;#http://unet.com&quot;&gt;uNet&lt;/a&gt; сообществе и большинстве сайтов системы &lt;a href=&quot;#http://ucoz.net&quot;&gt;uCoz&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Имея uID Вы сможете не только входить на сайты системы uCoz без повторных регистраций, но и получите возможность быстро создавать свои сайты, вести блог, общаться с другими пользователями uNet, заводить новые знакомства, управлять своей персональной страницей в сообществе, загружать свои фотографии, музыку, фильмы и многое другое.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;b&gt;uID&lt;/b&gt; is a universal login (e-mail address), used in &lt;a href=&quot;#http://www.unet.com/&quot;&gt;uNet&lt;/a&gt; community and on the majority of &lt;a href=&quot;#http://www.ucoz.net&quot;&gt;uCoz&lt;/a&gt; websites.&lt;/p&gt;&lt;p&gt;With uID you will be able not only to log in to uCoz sites without the necessity to re-register, but will also gain the opportunity to quickly create your own sites, maintain a blog, communicate with other uNet users, make new acquaintances, manage your personal page in the community, upload your photos, music, films, and many other things.&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/index/90-8&lt;/h5&gt;&lt;p&gt;Значение поля может состоять только из цифр, букв латинского алфавита, а так же символов &quot;_&quot; и &quot;-&quot;. Если Вы ничего не ввели - данное поле заполняется автоматически путём транслитерации названия.&lt;/p&gt;&lt;p&gt;ЧПУ (англ. Friendly URL) — удобные для восприятия человеком (а также систем и методов построения таких адресов). Является аббревиатурой от словосочетания «человекопонятный урл». Концепция ЧПУ предполагает максимально лаконичные и интуитивно понятные адреса, которые показывают естественную для человека логическую структуру данных на сервере. Структуру обычно представляют в виде иерархии как в обычной файловой системе, к которой привык пользователь.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;Field value can consist of digits, Latin letters, and the characters &quot;_&quot; and &quot;-&quot; only. If you have entered nothing, the field will be filled automatically by means of transliteration of the name.&lt;/p&gt;&lt;p&gt;Friendly URLs are human-readable web addresses. This conception presupposes maximum laconic and understandable URLs that show a human-natural logical data structure on a server. The structure is usually represented by a hierarchy as in an ordinary file system that a user got used to.&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/index/90-9&lt;/h5&gt;&lt;p&gt;&lt;b&gt;Материальный товар&lt;/b&gt; - любая продаваемая вещь, характеризующаяся размером, весом и требующая доставки.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Товар является файлом&lt;/b&gt; - Это может быть например загружаемый на хостинг архив с программой. Клиенту при покупке продается уникальная ссылка на его скачивание, действующая определённый период времени.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Товар - электронный код&lt;/b&gt; - например код ваучера пополнения счёта мобильного телефона. При покупке код высылается клиенту и удаляется из списка продаваемых.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;&lt;b&gt;Tangible product&lt;/b&gt; - any item to sell that is characterized by size, weight, and needs to be delivered.&lt;/p&gt;&lt;p&gt;&lt;b&gt;File item&lt;/b&gt; - it can be, for example, an archive with a software, uploaded to a hosting service. When buying, a customer gets a unique download link that expires after some period of time.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Electronic code&lt;/b&gt; - e.g. a mobile voucher code. When buying, a code is sent to the customer and then removed from the list of available codes.&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/index/90-10&lt;/h5&gt;В качестве разделителя кодов используется строка:&lt;div style=&quot;text-align: center; margin: 20px 0pt;&quot;&gt;&amp;gt;------&lt;delimiter&amp;gt;------&lt;&lt;/div&gt;&lt;hr /&gt;A line is used as a code separator:&lt;div style=&quot;text-align:center; margin: 20px 0;&quot;&gt;&gt;------&lt;delimiter&gt;------&lt;&lt;/div&gt;&lt;hr /&gt;
&lt;h5&gt;/index/90-11&lt;/h5&gt;В случае, если вам нужно сократить текст до нужного вам размера, вы можете использовать специальный код &lt;b&gt;&quot;$CUT$&quot;&lt;/b&gt;. Текст, расположенный после этого кода, будет доступен по ссылке &quot;Читать далее&quot;.&lt;hr /&gt;If you need to reduce the text size to some definite value, use the code &quot;&lt;b&gt;$CUT$&lt;/b&gt;&quot;. The text after this code will be available by the link &quot;Read more&quot;.&lt;hr /&gt;
&lt;h5&gt;/index/90-12&lt;/h5&gt;&lt;p&gt;Загрузите через FTP файл большого объёма на хостинг и выберите его через файловый менеджер.&lt;/p&gt;&lt;p&gt;После сохранения загруженный файл будет перенесён в специальную, защищённую от доступа, папку.&lt;/p&gt;&lt;hr /&gt;Upload a large file via FTP to the hosting server and select it via File Manager.&lt;br&gt;After saving, the uploaded file will be moved to a special folder, protected from access.&lt;hr /&gt;
&lt;h5&gt;/index/90-13&lt;/h5&gt;&quot;Старая цена&quot;, вводится для того, чтобы её перечеркнуть, а текущая цена продажи отображалась как &quot;новая&quot; (известный маркетинговый ход). Например: &lt;div style=&quot;margin: 20px 0pt; text-align: center; font-size: 18px;&quot;&gt;&lt;s&gt;10.45&lt;/s&gt; &lt;span style=&quot;color: red;&quot;&gt;9.99&lt;/span&gt;&lt;/div&gt;&lt;hr /&gt;&quot;Old price&quot; is displayed to be struck out, and the current price is displayed as &quot;new&quot; (a well-known marketing ploy). For example: &lt;div style=&quot;margin:20px 0; text-align:center; font-size:18px;&quot;&gt;&lt;s&gt;10.45&lt;/s&gt; &lt;span style=&quot;color:red;&quot;&gt;9.99&lt;/span&gt;&lt;/div&gt;&lt;hr /&gt;
&lt;h5&gt;/index/90-14&lt;/h5&gt;При отсутствии значения, краткое описание будет строится автоматически на основании поля &quot;Описание товара&quot;&lt;hr /&gt;If the value is absent a short description will be built automatically on the basis of &quot;Item description&quot; field&lt;hr /&gt;
&lt;h5&gt;/index/90-15&lt;/h5&gt;&lt;p&gt;Товар будет отображаться в указанных дополнительных категориях только на страницах каталога Интернет-магазина.&lt;/p&gt;&lt;p&gt;Во избежание путаницы и потери первоначальной принадлежности товара к категории, в разделе &lt;a href=&quot;#/panel/?a=shop;l=goods&quot;&gt;Управление товарами&lt;/a&gt; панели управления сайтом товар будет отображаться только в той категории, которая указана для данного товара в обязательном поле &quot;Категория&quot;.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;The item will be displayed in the specified additional categories on E-shop catalog pages only.&lt;/p&gt;&lt;p&gt;To avoid confusion and loss of the initial item belonging to a category, in &lt;a href=&quot;#/panel/?a=shop;l=goods&quot;&gt;Goods management&lt;/a&gt; section of the Control Panel the item will be displayed only in the category that was specified for it in the required field &quot;Category&quot;.&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/index/90-16&lt;/h5&gt;При использовании каталога описаний:&lt;ul&gt;&lt;li&gt;поля &quot;Описание товара&quot; и &quot;Производитель&quot; заменятся содержимым из каталога;&lt;/li&gt;&lt;li&gt;к списку &quot;Изображения товара&quot; автоматически добавится каталожное изображение (важно: в списке загруженных пользовательских изображений при редактировании товара оно отображаться не будет);&lt;/li&gt;&lt;li&gt;в шаблоне &quot;Страница товара&quot; станет доступен код &lt;b&gt;$SPEC$&lt;/b&gt;, отображающий полную спецификацию товара.&lt;/li&gt;&lt;/ul&gt;&lt;hr /&gt;When using a description catalog:&lt;ul&gt;&lt;li&gt;the fields &quot;Item description&quot; and &quot;Manufacturer&quot; will be substituted by the contents from the catalog;&lt;li&gt;a catalog image will be automatically added to the list &quot;Item images&quot; (important: it will not be displayed on the list of uploaded user images when editing an item);&lt;li&gt;the code &lt;b&gt;$SPEC$&lt;/b&gt;, displaying full item specification, will become available in the template &quot;Item page&quot;.&lt;hr /&gt;
&lt;h5&gt;/index/90-17&lt;/h5&gt;&lt;p&gt;Перевести свой сайт в режим &quot;&lt;b&gt;Премиум&lt;/b&gt;&quot; очень просто - для этого нужно зайти в &quot;&lt;a href=&quot;#/admin/11&quot;&gt;Панель управления&lt;/a&gt;&quot; сайта, и нажать на ссылку &quot;Стать Премиум пользователем&quot;.&lt;/p&gt;&lt;p&gt;Премиум-сайты имеют значительно более высокий приоритет в глазах посетителей, так как это показывает, насколько сайт ценен и дорог Вам. Кроме того, режим &quot;Премиум&quot; предоставляет массу дополнительных возможностей, недоступных обычным сайтам.&lt;/p&gt;&lt;p&gt;Для того чтобы Ваш сайт относился к категории &quot;Премиум-сайты&quot;, Вам не нужно тратить много денег. Цена базового пакета доступна каждому, и составляет всего &lt;b&gt;$3&lt;/b&gt; в месяц - что эквивалентно одному &quot;БигМак-меню&quot;, двум-трем пачкам сигарет, паре виртуальных подарков в социальных сетях или массе других недорогих вещей, на которые Вы ежедневно тратите деньги.&lt;/p&gt;&lt;p&gt;Мы уверены что Ваш сайт, являющийся частичкой Вашей жизни, достоин массы приоритетов и возможностей, которые он получит войдя в ряды &quot;Премиум-сайтов&quot;.&lt;/p&gt;&lt;p&gt;Для оплаты Вы можете использовать &lt;b&gt;SMS&lt;/b&gt;-сообщения, WebMoney, Yandex-Деньги, кредитные карточки и другие платежные системы.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;It is very easy to update your website to the &quot;&lt;b&gt;Premium&lt;/b&gt;&quot; mode - go to &quot;&lt;a href=&quot;#/admin/11&quot;&gt;Control Panel&lt;/a&gt;&quot; of the website, and click &quot;Become a premium user&quot;.&lt;/p&gt;&lt;p&gt;Premium websites have much higher priority in the eyes of visitors, as it shows how important and valuable the website is for you. Besides, the &quot;Premium&quot; mode gives a lot of additional possibilities, unavailable for ordinary websites.&lt;/p&gt;&lt;p&gt;You do not need to spend a lot of money to switch to the &quot;Premium websites&quot; category. The price of the basic package is affordable for everyone, and makes only &lt;b&gt;$3&lt;/b&gt; a month, which is equivalent to one Big Mac, a pack of cigarettes, a couple of virtual gifts in social networks and many other cheap things on which you spend money every day.&lt;br&gt;&lt;br&gt;We are sure that your website which is a part of your life deserves many priorities and possibilities, which it will get after it becomes a &quot;Premium Website&quot;.&lt;/p&gt;To pay you can use a credit card.&lt;hr /&gt;
&lt;h5&gt;/index/90-18&lt;/h5&gt;&lt;p&gt;Система автоматически заменит в тексте все внешние ссылки, что позволит повысить значимость страницы для поисковых систем, а также даст возможность отслеживать количество переходов по этим ссылкам.&lt;/p&gt;&lt;p&gt;Следить за статистикой переходов сможет владелец проекта на сайте сервиса &lt;a href=&quot;#http://u.to/&quot;&gt;&lt;b&gt;u.to&lt;/b&gt;&lt;/a&gt;, используя свой uNet идентификатор (uID).&lt;/p&gt;&lt;hr /&gt;The system will replace all external links in the text automatically, which will increase the significance of the page for search engines, and also will let you track the number of clicks on these links.&lt;br/&gt;&lt;br/&gt;The website owner can track the statistics of clicks on the website &lt;a href=&quot;#http://u.to/&quot;&gt;&lt;b&gt;u.to&lt;/b&gt;&lt;/a&gt;, using his uNet identifier (uID).&lt;hr /&gt;
&lt;h5&gt;/index/90-19&lt;/h5&gt;Все найденные в материале внешние ссылки будут проксироваться через домен сайта (пример: http://site.ucoz.ru/go?http://www.anysite.com/), таким образом сайт не будет терять значимость в поисковых системах. Это очень полезно в плане поисковой оптимизации.&lt;hr /&gt;All external links found in the entry will be proxied via the website domain (example: http://site.ucoz.ru/go?http://www.anysite.com/), therefore the website will not lose its significance in search engines. It is very useful for search engine optimization.&lt;hr /&gt;
&lt;h5&gt;/index/90-20&lt;/h5&gt;Признак уникальности задаётся до первой обработки файла, после чего его изменить в текущей конфигурации уже будет нельзя.&lt;hr /&gt;Unique field is set before the first processing of the file. It will be impossible to change unique field in the current configuration after it.&lt;hr /&gt;
&lt;h5&gt;/index/90-21&lt;/h5&gt;&lt;p&gt;Реклама выводится только на сайтах размещенных на &lt;b&gt;бесплатной&lt;/b&gt; основе.&lt;/p&gt;&lt;p&gt;Чтобы на Вашем сайте не выводилась реклама, зайдите в &lt;a href=&quot;#/admin/11&quot;&gt;Панель управления&lt;/a&gt;, раздел &quot;&lt;b&gt;Платные услуги&lt;/b&gt;&quot; (кнопка в верхнем меню).&lt;/p&gt;&lt;p&gt;Базовый пакет стоит всего &lt;b&gt;$3.09&lt;/b&gt; (&amp;#126;90руб./&amp;#126;24грн.) в месяц и кроме отключения рекламы содержит широкий набор дополнительных услуг.&lt;/p&gt;&lt;hr /&gt;&lt;i&gt;Missing.&lt;/i&gt;&lt;hr /&gt;

&lt;h3&gt;Сообщения в ПУ администратору&lt;/h3&gt;
&lt;code&gt;[&lt;a title=&quot;Help&quot; href=&quot;javascript://&quot; onclick=&quot;new _uWnd(&apos;HelpWd&apos;,&apos; &apos;,-600,-150,{max:1,min:1,autosize:1,maxh:400,closeonesc:1,resize:1,align:&apos;left&apos;},{url:&apos;&lt;span style=&quot;color:red;&quot;&gt;/panel/?a=help;t=1&lt;/span&gt;&apos;});return false;&quot; class=&quot;noun&quot;&amp;gt;&lt;b&amp;gt;HELP&lt;/b&amp;gt;&lt;/a&amp;gt;]&lt;/code&gt;
&lt;h5&gt;/panel/?a=help;t=1&lt;/h5&gt;&lt;p&gt;FTP host: &lt;b&gt;site.ucoz.ru&lt;/b&gt;&lt;br /&gt;FTP login: &lt;b&gt;0site&lt;/b&gt;&lt;br /&gt;FTP password: &lt;i&gt;указанный вами пароль для FTP&lt;/i&gt;&lt;hr /&gt;&lt;p&gt;FTP нужен для быстрой и удобной загрузки большого количества файлов на сервер. Для подключения по FTP используйте специальные программы (например: CuteFTP, FTP Commander, FTP Navigator и т.д.). Использовать для этих целей браузер нельзя! Если вам нужно загрузить несколько файлов, то для этого лучше использовать &quot;&lt;a href=&quot;#/panel/?a=fm&quot;&gt;Файловый менеджер&lt;/a&gt;&quot;.&lt;/p&gt;&lt;hr /&gt;&lt;div style=&quot;text-align:center;color:#FF0000;&quot;&gt;Your FTP will NOT work until e-mail is &lt;a href=&quot;#/panel/?a=verify&quot; style=&quot;color:#FF0000;&quot;&gt;confirmed&lt;/a&gt;!&lt;/div&gt;&lt;hr&gt;FTP host: &lt;b&gt;site.ucoz.ru&lt;/b&gt;&lt;br /&gt;FTP login: &lt;b&gt;0site&lt;/b&gt;&lt;br /&gt;FTP password: &lt;i&gt;&lt;span class=&quot;myWinSuccess&quot; style=&quot;cursor:pointer;&quot; onclick=&quot;window.location.href=&apos;/panel/?a=ftppass&apos;&quot;&gt;&lt;u&gt;Password not set&lt;/u&gt;&lt;/span&gt;&lt;/i&gt;&lt;hr&gt;&lt;div align=&quot;justify&quot;&gt;FTP is used for the quick and easy uploading of files to the server. Use special software for connecting through FTP (e.g. CuteFTP, FTP Commander, FTP Navigator etc.). Do not use a browser for this purpose! For uploading several files, &quot;&lt;a href=&quot;#/panel/?a=fm&quot;&gt;File Manager&lt;/a&gt;&quot; is the best choice.&lt;/div&gt;&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=2&lt;/h5&gt;У вас есть возможность заходить в панель управления (место где вы сейчас находитесь), непосредственно через ваш сайт.&lt;ul class=&quot;uz&quot;&gt;&lt;li&gt;&lt;a href=&quot;#http://site.ucoz.ru/admin/&quot;&gt;http://site.ucoz.ru/admin/&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;Это позволит вам не зависеть от работоспособности главного сайта uCoz, например, когда на нем ведутся технические работы. Вы всегда сможете войти в панель управления прямо через свой сайт.&lt;hr /&gt;You can log in to the Control Panel (the place where you are right now) directly from your site.&lt;ul class=&quot;uz&quot;&gt;&lt;li&gt;&lt;a href=&quot;#http://site.ucoz.ru/admin/&quot;&gt;http://site.ucoz.ru/admin/&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;This means your site is not dependent on the availability of the uCoz main website. For example, when it is under service, you can still enter the Control Panel directly from your website.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=3&lt;/h5&gt;&lt;i&gt;Статья об условных операторах (слишком много букв).&lt;/i&gt;&lt;hr /&gt;Huge article on conditions (too big to display).&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=4&lt;/h5&gt;&lt;p&gt;$MODULE_ID$, $PAGE_ID$, $URI_ID$ - специальные коды которые могут пригодиться, если нужно выводить различный текст или какой-то другой код для разных страниц, использующих один и тот же шаблон. Например, форум имеет массу различных страниц, однако шаблон у данного модуля только один, но с помощью кода $PAGE_ID$ можно вывести какой-то текст только на нужных типах страниц.&lt;/p&gt;&lt;p&gt;Примеры: &lt;div class=&quot;sample&quot;&gt;&lt;?if($PAGE_ID$=&apos;main&apos;)?&gt;Forums main page&lt;?endif?&gt;&lt;/div&gt;&lt;div class=&quot;sample&quot;&gt;&lt;?if($PAGE_ID$=&apos;addthread&apos; || $PAGE_ID$=&apos;addpoll&apos;)?&gt;&lt;b&gt;Read forums rules!!!&lt;/b&gt;&lt;?endif?&gt;&lt;/div&gt;&lt;div class=&quot;sample&quot;&gt;&lt;?if($PAGE_ID$=&apos;recentthreads&apos;)?&gt;Recent threads&lt;?endif?&gt;&lt;/div&gt;&lt;hr&gt;Узнать значения переменных $MODULE_ID$, $PAGE_ID$, $URI_ID$ можно через &quot;&lt;b&gt;Admin bar&lt;/b&gt;&quot; зайдя на сайт как Администратор.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;$MODULE_ID$, $PAGE_ID$, $URI_ID$ - special codes, which may be useful for outputting different text or code for different pages, using the same template. For example, the forum has many different pages, but only one template, however with the help of $PAGE_ID$ code some text can be displayed on the necessary pages only.&lt;/p&gt;&lt;p&gt;Examples: &lt;div class=&quot;sample&quot;&gt;&lt;?if($PAGE_ID$=&apos;main&apos;)?&gt;Forums main page&lt;?endif?&gt;&lt;/div&gt;&lt;div class=&quot;sample&quot;&gt;&lt;?if($PAGE_ID$=&apos;addthread&apos; || $PAGE_ID$=&apos;addpoll&apos;)?&gt;&lt;b&gt;Read forum rules!!!&lt;/b&gt;&lt;?endif?&gt;&lt;/div&gt;&lt;div class=&quot;sample&quot;&gt;&lt;?if($PAGE_ID$=&apos;recentthreads&apos;)?&gt;Recent threads&lt;?endif?&gt;&lt;/div&gt;&lt;hr&gt;Values of $MODULE_ID$, $PAGE_ID$, $URI_ID$ variables can be found in the &quot;&lt;b&gt;Admin bar&lt;/b&gt;&quot; after logging in to the site as the Administrator.&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=5&lt;/h5&gt;Данная функция позволит вам вывести любые данные (анекдоты, афоризмы, стихи, фотографии и т.д.) в случайном порядке. Для этого вам нужно создать текстовый файл (только с помощью программы &quot;Блокнот&quot;), каждая строка которого будет отдельной записью. Все переводы на новую строку заменяйте тегом &quot;&lt;br&gt;&quot;. Размер файла не должен превышать &lt;b&gt;2&lt;/b&gt;мб.&lt;hr&gt;&lt;b&gt;Пример 1&lt;/b&gt;&lt;div style=&quot;border: 1px solid #CCCCCC;padding:5px;margin:5px;background:#F7F7F7;&quot;&gt;Я помню чудное мгновенье,&lt;br&gt;Передо мной явилась ты....&lt;br /&gt;У лукоморья дуб зеленый,&lt;br&gt;Златая цепь на дубе том...&lt;/div&gt;&lt;br /&gt;&lt;b&gt;Пример 2&lt;/b&gt;&lt;div style=&quot;border: 1px solid #CCCCCC;padding:5px;margin:5px;background:#F7F7F7;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://prototype.ucoz.ua/img/1.gif&quot;&gt;&lt;br /&gt;&lt;img border=&quot;0&quot; src=&quot;https://prototype.ucoz.ua/img/2.gif&quot;&gt;&lt;br /&gt;&lt;img border=&quot;0&quot; src=&quot;https://prototype.ucoz.ua/img/3.gif&quot;&gt;&lt;br /&gt;&lt;img border=&quot;0&quot; src=&quot;https://prototype.ucoz.ua/img/4.gif&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;Внимание!&lt;/b&gt; В файле не должно быть пустых строк!&lt;hr /&gt;This feature allows you to display any data (jokes, aphorisms, verses, photos etc.) in random order. You should create a text file (using &quot;Notepad&quot; only) where each line corresponds to a separate entry. All line feeds must be replaced by the &quot;&lt;br&gt;&quot; tag. File size must not exceed &lt;b&gt;2&lt;/b&gt;Mb.&lt;hr&gt;&lt;b&gt;Example 1&lt;/b&gt;&lt;div style=&quot;border: 1px solid #CCCCCC;padding:5px;margin:5px;background:#F7F7F7;&quot;&gt;Spel chekers, hoo neeeds em? &lt;br /&gt;Luck can&apos;t last a lifetime&lt;br&gt;unless you die young&lt;/div&gt;&lt;br /&gt;&lt;b&gt;Example 2&lt;/b&gt;&lt;div style=&quot;border: 1px solid #CCCCCC;padding:5px;margin:5px;background:#F7F7F7;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://prototype.ucoz.ua/img/1.gif&quot;&gt;&lt;br /&gt;&lt;img border=&quot;0&quot; src=&quot;https://prototype.ucoz.ua/img/2.gif&quot;&gt;&lt;br /&gt;&lt;img border=&quot;0&quot; src=&quot;https://prototype.ucoz.ua/img/3.gif&quot;&gt;&lt;br /&gt;&lt;img border=&quot;0&quot; src=&quot;https://prototype.ucoz.ua/img/4.gif&quot;&gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;Note!&lt;/b&gt; The file must not contain empty lines!&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=6&lt;/h5&gt;&lt;p&gt;Материал с включенной опцией &quot;Материал недоступен для просмотра&quot; не виден гостям и другим группам пользователей, которые не имеют право редактировать или удалять данный материал. По умолчанию право просматривать подобные материалы есть у группы &quot;Администраторы&quot; и &quot;Модераторы&quot;.&lt;/p&gt;&lt;p&gt;В разделе &quot;&lt;a href=&quot;#/panel/?a=users;l=groups&quot;&gt;Группы пользователей&lt;/a&gt;&quot; откорректируйте права групп, которым нужна премодерация добавляемых материалов.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;Entries with the enabled &quot;Entry is not available for viewing&quot; feature are invisible to guests and other user groups which do not have permission to edit/remove entries. By default &quot;Administrators&quot; and &quot;Moderators&quot; groups have this permission.&lt;/p&gt;&lt;p&gt;In &quot;&lt;a href=&quot;#/panel/?a=users;l=groups&quot;&gt;User groups&lt;/a&gt;&quot; section you can edit permissions of the groups which need premoderation of added entries.&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=7&lt;/h5&gt;Настройка указывает на то, что модераторские функции, такие как удаление тем, сообщений и т.д. (все, выделенные красным цветом) будут работать только в форумах где пользователь является модератором. Во всех остальных форумах модераторские функции работать не будут. Привязка модераторов к определенным форумам осуществляется во время добавления/редактирования форумов.&lt;hr /&gt;This setting indicates the moderator&apos;s functions, such as removal of threads, messages etc. (all marked in red) will work only in forums where the user is a moderator. In all other forums moderator&apos;s functions will not work. Moderators are associated with certain forums when adding/editing forums.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=8&lt;/h5&gt;&lt;p&gt;К любой группе смайлов можно добавить свои смайлы. Для этого нужно в разделе &quot;&lt;a href=&quot;javascript://&quot; onClick=&quot;window.open(&apos;/panel/?a=fm;n=1&apos;,&apos;fman&apos;,&apos;scrollbars=1,top=0,left=0,width=500,height=400&apos;);return false;&quot;&gt;Файловый менеджер&lt;/a&gt;&quot; создать папку &quot;&lt;b&gt;sml&lt;/b&gt;&quot;, а в нее загрузить любые ваши смайлы. Смайлов может быть не более &lt;b&gt;200&lt;/b&gt; штук, все они должны иметь расширение &quot;&lt;b&gt;.gif&lt;/b&gt;&quot;.&lt;/p&gt;&lt;p&gt;Для создания своего набора смайлов перейдите в раздел &quot;&lt;a href=&quot;#/panel/?a=sml&quot;&gt;Редактор смайлов&lt;/a&gt;&quot;.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;You can add your own smileys to any smileys set. To do this you must create the &quot;&lt;b&gt;sml&lt;/b&gt;&quot; folder in the section &quot;&lt;a href=&quot;javascript://&quot; onClick=&quot;window.open(&apos;/panel/?a=fm;n=1&apos;,&apos;fman&apos;,&apos;scrollbars=1,top=0,left=0,width=500,height=400&apos;);return false;&quot;&gt;File Manager&lt;/a&gt;&quot;, and upload any smileys to it. There cannot be more than &lt;b&gt;200&lt;/b&gt; smileys, and they must have the extension &quot;&lt;b&gt;.gif&lt;/b&gt;&quot;.&lt;/p&gt;&lt;p&gt;To create your own set of smileys go to the &quot;&lt;a href=&quot;#/panel/?a=sml&quot;&gt;Smileys Editor&lt;/a&gt;&quot; section.&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=9&lt;/h5&gt;Если пользователь добавит подряд несколько сообщений, то они будут автоматически склеены в одно. Склеенные сообщения считаются одним сообщением.&lt;hr /&gt;If a user adds several messages in succession they will be automatically merged into one. Merged messages are considered to be a single message.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=10&lt;/h5&gt;Для управления комментариями зайдите на свой сайт как администратор (группа &quot;Администраторы&quot;). Во вкладке &quot;Управление&quot; (верхнее меню) выберите пункт &quot;Управление комментариями&quot;.&lt;hr /&gt;To manage comments log in to your site as administrator (&quot;Administrators&quot; group). In &quot;Control&quot; tab (upper bar) select &quot;Comments management&quot; item.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=11&lt;/h5&gt;Для управления записями, зайдите в гостевую книгу как администратор (группа &quot;Администраторы&quot;).&lt;hr /&gt;To manage entries log in to Guestbook as administrator (&quot;Administrators&quot; group).&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=12&lt;/h5&gt;Разделы предназначены для тематической группировки категорий. Группировать категории нужно только в том случае, если у вас много категорий. В разделы &lt;b&gt;нельзя&lt;/b&gt; добавлять материалы.&lt;hr /&gt;Sections are used for grouping categories. They are useful if you have a lot of categories.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=13&lt;/h5&gt;Для блокировки IP адресов зайдите на свой сайт как администратор (группа &quot;Администраторы&quot;). Во вкладке &quot;Управление&quot; (верхнее меню) выберите пункт &quot;Блокировка IP адресов&quot;.&lt;hr /&gt;To block IP addresses log in to your site as administrator (&quot;Administrators&quot; group). In &quot;Control&quot; tab (upper bar) select &quot;IP addresses blocking&quot; item.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=14&lt;/h5&gt;Мы настоятельно рекомендуем использовать браузер &lt;a href=&quot;#http://browsers.ucoz.ru/index/stand/0-4&quot;&gt;&lt;b&gt;FireFox&lt;/b&gt;&lt;/a&gt;. Основные качества присущие FireFox - стабильность, скорость, &lt;b&gt;безопасность&lt;/b&gt;, удобство в работе. Использование FireFox во много раз снизит риски заражения компьютера вирусами и другими вредоносными программами. После нескольких дней использования, FireFox станет Вашим любимым браузером.&lt;hr /&gt;We strongly recommend you use the &lt;a href=&quot;#http://www.firefox.com/&quot;&gt;&lt;b&gt;FireFox&lt;/b&gt;&lt;/a&gt; browser. The principal characteristics of FireFox are: stability, speed, &lt;b&gt;safety&lt;/b&gt;, and usability. Using FireFox will greatly reduce the risk of computer infection by viruses and other malware. After several days of use, FireFox will become your favorite browser.&lt;hr&gt;The recommended &lt;a href=&quot;#https://addons.mozilla.org/&quot;&gt;&lt;b&gt;add-ons&lt;/b&gt;&lt;/a&gt;:&lt;div style=&quot;padding:4px 0 4px 10px&quot;&gt;- Download Embedded&lt;br /&gt;- DownThemAll!&lt;br /&gt;- Download Statusbar&lt;br /&gt;- oldBar&lt;br /&gt;- LastTab-&lt;br /&gt;- IE Tab&lt;br /&gt;- FireBug&lt;br /&gt;- FlagFox&lt;br /&gt;- FireShot&lt;/div&gt;Use search form on FireFox website.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=15&lt;/h5&gt;Для вывода последних новостей на главной странице сайта, перейдите в раздел &quot;Управление страницами сайта&quot;, нажмите &quot;Изменить информацию&quot; для главной страницы и нажмите на ссылку &quot;Вставить код для вывода новостей&quot; в форме редактирования.&lt;hr /&gt;To display latest news on the main page go to the &quot;Pages management&quot; section, click on &quot;Edit information&quot; for the main page and click on the link &quot;Insert the code for news output&quot; in the editing form.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=16&lt;/h5&gt;&lt;p&gt;Если вы хотите использовать картинки в ваших опросах вместо ответов укажите полные ссылки на картинки (http://domain.com/image.gif).&lt;/p&gt;&lt;p&gt;Опрос, в котором не указана дата завершения, будет активным на протяжении всего времени его существования.&lt;/p&gt;&lt;p&gt;Если вы хотите, чтобы пользователь мог выбрать несколько вариантов ответов, вы должны выбрать &quot;checkbox&quot; или &quot;select (multiple)&quot; тип.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;If you want to use images instead of answers in polls, then specify full image links (http://domain.com/image.gif).&lt;/p&gt;&lt;p&gt;A poll without an expiry date will remain active indefinitely.&lt;/p&gt;&lt;p&gt;If you want users to be able to select several answers, choose &quot;checkbox&quot; or &quot;select (multiple)&quot; type.&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=17&lt;/h5&gt;Глобальные блоки - это блоки, которые доступны во всех других шаблонах вашего проекта. С помощью них можно оптимизировать дизайн вашего проекта, разбив его на общие части, например: &lt;b&gt;HEADER&lt;/b&gt; - общая верхняя часть, &lt;b&gt;FOOTER&lt;/b&gt; - общая нижняя часть и т.п. Используя общие блоки вы сможете делать изменения для всего проекта путем редактирования только одного шаблона блока.&lt;hr /&gt;Global blocks are common blocks accessible in all website templates. They optimize design of your site by allowing you to split the site into common parts, e.g.: &lt;b&gt;HEADER&lt;/b&gt; - common upper part, &lt;b&gt;FOOTER&lt;/b&gt; - common bottom part etc. With the help of global blocks you can make changes to the design of all modules by means of editing the template of one block.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=18&lt;/h5&gt;Доступ запрещен&lt;hr /&gt;Access denied&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=19&lt;/h5&gt;&lt;p&gt;Дисковое пространство увеличивается с каждой секундой существования сайта. Чем больше посетителей на сайте, тем быстрее увеличивается дисковое пространство.&lt;/p&gt;&lt;p&gt;Дисковое пространство &lt;b&gt;неограниченно&lt;/b&gt;&lt;/p&gt;.&lt;hr /&gt;&lt;p&gt;Disk space increases with every minute the site is in existence. The more visitors your site has, the faster disk space increases.&lt;/p&gt;&lt;p&gt;Disk space is &lt;b&gt;unlimited&lt;/b&gt;.&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=20&lt;/h5&gt;Локальные пользователи - внутренние пользователи сайта.&lt;hr /&gt;Local users are internal website users.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=21&lt;/h5&gt;uNet пользователи - это глобальные пользователи имеющие аккаунт в системе uNet.com. Мы рекомендуем использовать данный метод авторизации на сайте, так как он имеет значительные преимущества перед традиционным методом.&lt;hr /&gt;uNet users are global users with an account on the uNet.com system. We recommend this method of authorization for a website as it has considerable advantages over the traditional method.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=22&lt;/h5&gt;&lt;p&gt;Данный пользователь является глобальным пользователем системы &lt;a href=&quot;#http://www.unet.com&quot;&gt;uNet&lt;/a&gt;. Удаление такого пользователя не даст желаемого результата, так как при следующем входе он автоматически будет добавлен в базу пользователей сайта (зарегистрирован).&lt;/p&gt;&lt;p&gt;Чтобы запретить пользователю участвовать в жизни сайта, необходимо перенести его в группу &quot;&lt;b&gt;Заблокированные&lt;/b&gt;&quot;. Перенос пользователя в группу, у которой нет прав для каких-либо действий, гораздо более эффективен, чем удаление.&lt;/p&gt;&lt;hr /&gt;&lt;p&gt;This user is a global &lt;a href=&quot;#http://www.unet.com&quot;&gt;uNet&lt;/a&gt; user. Removing them will not have the desired result, because he/she will automatically be added to the users database (registered) at his/her next login.&lt;/p&gt;&lt;p&gt;To ban a user from participation in the website for life you should move him/her to the &quot;Blocked&quot; group. Transfer of a user to the group with no permissions is more effective than his/her deletion.&lt;/p&gt;&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=23&lt;/h5&gt;Данный статус услуги означает, что для нее имеется другая оплата, срок действия которой еще не истек (для пакета услуг означает, что активна оплата по какой-либо входящей в пакет услуге). По истечению срока действия предыдущей оплаты новая активизируется автоматически. Если нужно активизировать новую оплату сразу же (например, после оплаты расширения дискового пространства на больший объем), то необходимо вручную отменить действующую оплату. Для просмотра истории оплат соответствующей услуги кликните по ее наименованию в списке позиций заказа.&lt;hr /&gt;This status of the service means that it has another active payment which hasn&apos;t expired yet (for the service package it means there is an active payment for one of the services in the package). When the previous payment expires, the new one will be activated automatically. If the new payment needs to be activated immediately (e.g. after paying for increasing disk space to a bigger amount), the current one should be canceled manually. To view the payment history of a certain service, click on its name in the list of order.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=24&lt;/h5&gt;&lt;b&gt;Sitemap&lt;/b&gt; позволит поисковым системам быстрее и качественнее индексировать ваш сайт. Sitemap файлы обновляются автоматически, приблизительно раз в сутки (в зависимости от частоты обновления сайта). Адреса Sitemap файлов прописаны в стандартном файле robots.txt, который мы советуем не изменять.&lt;hr /&gt;&lt;b&gt;Sitemap&lt;/b&gt; will permit search engines to index your website quicker and more qualitatively. Sitemap files are updated automatically, approximately once a day (depending on how often the website is updated). URLs of Sitemap files are written in the default robots.txt file, which we advise you not to change.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=25&lt;/h5&gt;Почему поддержка платная?&lt;/b&gt;&lt;p&gt;В системе действует платная служба пользовательской поддержки. Данная мера не нацелена на то, чтобы зарабатывать деньги на &quot;проблемах пользователей&quot;, в случае технических проблем, поддержка остается бесплатной. Она нацелена на ограничение потока простых вопросов, с которыми пользователь, как правило, способен разобраться сам.&lt;p&gt;Бесплатная высококачественная поддержка у бесплатного сервиса - нонсенс. Платная поддержка у бесплатных, в т.ч. open source систем принята по всему миру.&lt;hr /&gt;&lt;b&gt;Why is Support not free?&lt;/b&gt;&lt;p&gt;The system has a paid user support service. It is not intended for earning money &quot;from users&apos; problems&quot;. In the case of technical problems Support remains free. The aim is to limit the number of simple questions which a user can settle himself/herself.&lt;p&gt;Free high-quality support of a free service would not make a lot of sense. Paid support of free systems, including open source systems, is a widely accepted practice.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=26&lt;/h5&gt;Снятие средств происходит сразу после отправки вопроса. Если вопрос оказывается очень сложным и требующим долгого изучение, работник службы поддержки установит для вопроса более высокую цену, и, после вашего подтверждения цены, вопрос будет рассмотрен.&lt;p&gt;Если ответ на вопрос занял более 24 часов, оплата не взимается.&lt;p&gt;Если Вы недовольны ответом, нажмите на ссылку &quot;Недоволен ответом&quot;. Запрос будет направлен вышестоящему лицу и если ответ действительно оказался некачественный, деньги будут возвращены на счет. Если Ваша жалоба на качество ответа будет необоснованной, то вы более не сможете пользоваться данной функцией.&lt;p&gt;Плата взимается только за первое сообщение в ветке, последующая переписка по одному вопросу не требует оплаты.&lt;hr /&gt;Money is charged after a question has been sent. If a question is very complex and requires long examination, a support employee will set a higher cost for the question, and the question will be answered once you have approved the price.&lt;p&gt;If a question takes over 24 hours to answer, the payment is not be charged.&lt;p&gt;If you are not satisfied with the answer, click &quot;Unsatisfied with the answer&quot;. The request will be sent to a superior officer and if they agree the answer was of low quality, the money will be refunded. If your complaint about the quality is groundless, you will not be able to use this feature any more.&lt;p&gt;Payment is charged for the first message in a thread only, all subsequent messages concerning the same question do not require payment.&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=27&lt;/h5&gt;PHP не активирован&lt;hr /&gt;PHP is not activated&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=28&lt;/h5&gt;&lt;i&gt;Подробности активации PHP (много букв).&lt;hr /&gt;PHP activation details (too big to display).&lt;/i&gt;&lt;hr /&gt;
&lt;h5&gt;/panel/?a=help;t=29&lt;/h5&gt;&lt;ul&gt;&lt;li&gt;Описание ресурса должно быть грамотным и отражать его суть.&lt;/li&gt;&lt;li&gt;Запрещается использовать любые символы для визуального украшения текста, а также писать текст в верхнем регистре (кроме аббревиатур).&lt;/li&gt;&lt;li&gt;Категория ресурса должна соответствовать его тематике.&lt;/li&gt;&lt;li&gt;Ресурс не должен нарушать правила пользовательского соглашения uCoz.&lt;/li&gt;&lt;/ul&gt;&lt;hr /&gt;&lt;ul&gt;&lt;li&gt;The description of the resource should be knowledgeable and should reflect its essence.&lt;/li&gt;
&lt;li&gt;It is forbidden to use any symbols for visual decoration of the text or to type the text using upper case (except for abbreviations).&lt;/li&gt;&lt;li&gt;Resource category should correspond to its subject matter.&lt;/li&gt;&lt;li&gt;The resource shouldn&apos;t infringe uCoz Terms of Use.&lt;/li&gt;&lt;/ul&gt;</content:encoded>
			<link>https://prototype.ucoz.ua/news/ucoz_system_messages/2012-04-06-18</link>
			<dc:creator>Prototype</dc:creator>
			<guid>https://prototype.ucoz.ua/news/ucoz_system_messages/2012-04-06-18</guid>
			<pubDate>Fri, 06 Apr 2012 17:25:25 GMT</pubDate>
		</item>
	</channel>
</rss>