<?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>cZarte Design &#187; Jquery</title>
	<atom:link href="http://www.czarte.eu/lang/en-us/tag/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://www.czarte.eu</link>
	<description>Freelance Designer, Webdesigner, Painter</description>
	<lastBuildDate>Tue, 15 Jun 2010 23:31:28 +0000</lastBuildDate>
	<language>en-us</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title> My first unobtrusive JavaScript</title>
		<link>http://www.czarte.eu/lang/en-us/navody/muj-prvni-unobtrusive-javascript-my-first-unobtrusive-javascript</link>
		<comments>http://www.czarte.eu/lang/en-us/navody/muj-prvni-unobtrusive-javascript-my-first-unobtrusive-javascript#comments</comments>
		<pubDate>Wed, 28 Apr 2010 09:40:51 +0000</pubDate>
		<dc:creator>czarte</dc:creator>
				<category><![CDATA[ Tutorials]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[unobtrusive JavaScript]]></category>

		<guid isPermaLink="false">http://www.czarte.eu/?p=349</guid>
		<description><![CDATA[First realy unobtrusive JavaScript using Jquery. In &#60;head&#62; area in our HTML document we link in twho files: 1) jquery latest 2)unobtrusive script &#60;script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"&#62;&#60;/script&#62; &#60;script type="text/javascript" src="mujskript.js"&#62;&#60;/script&#62; mujskript.js contains  javaScript, which is trigered all needed elements from outside, so we can clen &#8220;onMouseOver&#8221; and so from our HTML . $(document).ready(function(picshow){ $(".post").hover( function () [...]]]></description>
			<content:encoded><![CDATA[
<p><span lang="en-us">First realy unobtrusive JavaScript using <a href="http://jquery.com/" target="_blank">Jquery</a>.</span></p>

<p><span lang="en-us">In &#60;head&#62; area in our HTML document we link in twho files:<!--more--></span></p>
<p>1) jquery latest</p>
<p>2)unobtrusive script</p>
<pre id="line14">&#60;script type="text/javascript" src="<a href="view-source:http://code.jquery.com/jquery-latest.js">http://code.jquery.com/jquery-latest.js</a>"&#62;&#60;/script&#62;
&#60;script type="text/javascript" src="mujskript.js"&#62;&#60;/script&#62;</pre>

<p><span lang="en-us">mujskript.js contains  javaScript, which is trigered all needed elements from outside, so we can clen &#8220;onMouseOver&#8221; and so from our HTML .</span></p>
<pre id="line14">
<pre id="line14"> $(document).ready(function(picshow){
        $(".post").hover(
          function () {
            var postID = this.id;
            $("#image-" + postID).parent().animate({opacity: "0.95"}, 1);
            $("#image-" + postID).attr("style","z-index: 5");
            $("#image-" + postID).parent().animate({opacity: "1"}, "fast");
          },
          function () {
           var postID = this.id;
           $("#image-" + postID).attr("style","z-index: 1");
          }
        );
    });</pre>
</pre>

<p><span lang="en-us">In HTML we will create only structure with IDs and CLASSes.</span></p>
<pre id="line105">&#60;div class="widget thin"&#62;
 &#60;div id="wrapimages"&#62;

  &#60;div id="postmenu"&#62;</pre>
<pre id="line123">  &#60;ul&#62;
    &#60;li&#62;&#60;a class="post" id="post-73" href="http://www.domena.cz/kategorie/stavby/
         hotely/hotel-savanah/" title="Hotel Padova"&#62;Hotel Padova&#60;/a&#62;&#60;/li&#62;
    &#60;li&#62;&#60;a class="post" id="post-84" href="http://www.domena.cz/kategorie/
         stavby/hotely/hotel-thalia-eurostar/" title="Hotel Euroforte"&#62;Hotel Euroforte&#60;/a&#62;&#60;/li&#62;
  &#60;/ul&#62;
  &#60;/div&#62;</pre>
<pre id="line142">  &#60;h2 class="nodisplay"&#62;Hotel Savanah&#60;/h2&#62;
  &#60;img src="http://www.domena.cz/uploads/StatueDome.jpg" alt="" id="image-post-73" /&#62;
  &#60;h2 class="nodisplay"&#62;hotel thalia eurostar&#60;/h2&#62;
  &#60;img src="http://www.domena.cz/uploads/301_2Exterior_thalia.jpg" alt="" id="image-post-84" /&#62;
  &#60;/div&#62;

 &#60;div class="cleaner"&#62;&#38;nbsp;&#60;/div&#62;</pre>
<pre id="line157"> &#60;/div&#62;
&#60;/div&#62;
</pre>

<p><span lang="en-us">And in CSS we`ll define selectors.</span></p>
<pre>
<pre>#wrapimages {position: relative;}
#wrapimages img {position: absolute;}
#wrapimages #postmenu {position: absolute; z-index: 20;}</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.czarte.eu/lang/en-us/navody/muj-prvni-unobtrusive-javascript-my-first-unobtrusive-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title> Tutorial for WP-image-slider</title>
		<link>http://www.czarte.eu/lang/en-us/navody/wp-image-slider</link>
		<comments>http://www.czarte.eu/lang/en-us/navody/wp-image-slider#comments</comments>
		<pubDate>Sun, 11 Oct 2009 10:50:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ Tutorials]]></category>
		<category><![CDATA[ Gallery]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.czarte.eu/www/?p=151</guid>
		<description><![CDATA[We bringing picture tutorial for use wp-image-slider plugin, which allowed us to enter animated galleries to pages or posts. If we want to create new gallery, od edit complete one, we must go in administration at panel &#8220;WP image slider&#8221; as we can see at picture no. 1. picture no. 1 Here, if we alredy [...]]]></description>
			<content:encoded><![CDATA[
<p><span lang="en-us">We bringing picture tutorial for use wp-image-slider plugin, which allowed us to enter animated galleries to pages or posts. If we want to create new gallery, od edit complete one, we must go in administration at panel &#8220;WP image slider&#8221; as we can see at picture no. 1.</span></p>
<p><span id="more-151"></span></p>
<p><a rel="lightbox[obr1]" href="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen1.jpg"><img class="size-medium wp-image-64  alignnone" title="screen1" src="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen1-484x400.jpg" alt="Obrázek číslo 1" /></a></p>
<p> <span lang="en-us">picture no.</span> 1</p>

<p><span lang="en-us">Here, if we alredy have some galleries &#8211; see at picture no.2 &#8211; we will see list of them, including special tags (wp bracket) /point no. 4/ which allowed us to paste it in post or page to show our gallery in content. We can also use button for edit it, or delete it /no. 2 and 3/. At this page we can find button for create new gallery /no. 1/</span></p>
<p><a rel="lightbox[obr2]" href="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen2.jpg"> <img class="size-medium wp-image-65  alignnone" title="screen2" src="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen2-488x400.jpg" alt="Obrázek č.2" /></a></p>
<p> <span lang="en-us">pic no.</span> 2</p>

<p><span lang="en-us">The enviroment of editing and creating galleries looks almost same &#8211; see at picture no.3 &#8211; so I put here only picture with creation of new gallery. Pictures we can add by checking boxes under picture. In case editing of some existing gallery are included pictures already selected. If we create new gallery, we must enter its name /no. 1/. Than we cane define width and height of gallery /no. 2 and 3/ and at last also align of galery in page /no. 4/. We finish creation by submit it with button under gallery and save that informations /no.5/</span></p>
<p><a rel="lightbox[obr3]" href="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen3.jpg"><img class="size-large wp-image-66    alignnone" title="screen3" src="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen3-593x799.jpg" alt="obráek č.3" /></a></p>
<p> <span lang="en-us">pic no.</span> 3</p>
]]></content:encoded>
			<wfw:commentRss>http://www.czarte.eu/lang/en-us/navody/wp-image-slider/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
