<?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>Webdevtuts &#187; jquery</title>
	<atom:link href="http://www.webdevtuts.net/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdevtuts.net</link>
	<description>Making tutorials fun and easy!</description>
	<lastBuildDate>Mon, 23 Jan 2012 11:36:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Create a full background image slider using jquery</title>
		<link>http://www.webdevtuts.net/coding/create-a-full-background-image-slider-using-jquery/</link>
		<comments>http://www.webdevtuts.net/coding/create-a-full-background-image-slider-using-jquery/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 12:47:40 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[full background image]]></category>
		<category><![CDATA[image slider]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery background image slider]]></category>
		<category><![CDATA[jquery image slider]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=2284</guid>
		<description><![CDATA[Backgrounds are an important aspect when it comes to creating a website. Whenever i look at a website the background most likely determines what the rest of the website will look like. As we may all know it is very &#8230; <a href="http://www.webdevtuts.net/coding/create-a-full-background-image-slider-using-jquery/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Backgrounds are an important aspect when it comes to creating a website. Whenever i look at a website the background most likely determines what the rest of the website will look like. As we may all know it is very simple to insert a background into your web page, but what if you wanted to insert <strong>multiple backgrounds</strong> into your web page? Well today is your lucky day. In today&#8217;s tutorial I am going to teach you all how to<strong> create a full background image slider using jquery</strong>.</p>
<p><strong>UPDATED:</strong> This tutorial was updated on 7-10-2011. I have made it so you can now add content over the slider.</p>
<div class="block_dload"><a class="dload" title="Download" href="https://s3.amazonaws.com/webdevtuts/uploads/2011/01/Full-background-webdevtuts.zip" target="_blank">Download</a> <a class="demo" title="demonstration" href="http://www.demo.webdevtuts.net/slider/full-background-slideshow-example.html" target="_blank">Demo</a></div>
<blockquote>
<h3>Things you will need:</h3>
<ul>
<li><a href="http://jonraasch.com/blog/a-simple-jquery-slideshow" target="_blank">Jquery Slideshow</a></li>
<li><a href="http://jquery.com/" target="_blank">Jquery</a></li>
</ul>
</blockquote>
<h2>The HTML</h2>
<p>Copy the code below and I will explain.</p>
<pre class="brush:css">&lt;div id="slideshow"&gt;
    &lt;img class="active" src="image1.jpg" alt="Slideshow Image 1" /&gt;
    &lt;img src="image2.jpg" alt="Slideshow Image 2" /&gt;
    &lt;img src="image3.jpg" alt="Slideshow Image 3" /&gt;
    &lt;img src="image4.jpg" alt="Slideshow Image 4" /&gt;
    &lt;img src="image5.jpg" alt="Slideshow Image 5" /&gt;
&lt;/div&gt;</pre>
<p>For our full background image slider you can use as many images as you may like but I will only use 5 images. The first image has a special class name active which will trigger our slider effect. I name the class active so I can later call on it, as of now it does nothing.</p>
<h2>The Javascript</h2>
<p>The main part of our full background slider is the JavaScript. Copy the JavaScript and I will explain. Insert the codes below into the head section of your html document.</p>
<pre class="brush:js">
&lt;script type="text/javascript" src="js/jquery-1.2.6.min.js"&gt;&lt;/script&gt;
</pre>
<p>The code above gets or as you like to say calls the jquery. Change to your correct location.</p>
<pre class="brush:js">&lt;script type="text/javascript"&gt;

function slideSwitch() {
    var $active = $('#slideshow IMG.active');

    if ( $active.length == 0 ) $active = $('#slideshow IMG:last');

    // use this to pull the images in the order they appear in the markup
    var $next =  $active.next().length ? $active.next()
        : $('#slideshow IMG:first');

    // uncomment the 3 lines below to pull the images in random order

    // var $sibs  = $active.siblings();
    // var rndNum = Math.floor(Math.random() * $sibs.length );
    // var $next  = $( $sibs[ rndNum ] );

    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

$(function() {
    setInterval( "slideSwitch()", 5000 );
});

&lt;/script&gt;</pre>
<p><!--formatted--><br />
The code above is our jquery function or shall i say script. The script is basically telling jquery to look for an image with the class name active, which we&#8217;ve already provided in our html markup,Then it tells the JavaScript that when it finds the image with the class name active to get the images in the order they&#8217;re provided in.</p>
<h2>The css</h2>
<p>Copy the css code below. The css code below is the code which styles our full page slider image. It&#8217;s very simple and makes our background look nice.</p>
<pre class="brush:css">
#slideshow {
    position:relative;
    height:350px;
    z-index:-1;
}

#slideshow IMG {
    position:absolute;
    top:0;
    left:0;
    z-index:8;
    opacity:0.0;
}

#slideshow IMG.active {
    z-index:10;
    opacity:1.0;
}

#slideshow IMG.last-active {
    z-index:9;
}

#slideshow img {
	/* Set rules to fill background */
	min-height: 100%;
	min-width: 1024px;

	/* Set up proportionate scaling */
	width: 100%;
	height: auto;

	/* Set up positioning */
	position: fixed;
	top: 0;
	left: 0;
}

@media screen and (max-width: 1024px){
	img.bg {
	left: 50%;
	margin-left: -512px;
}
}
</pre>
<p>Source: <a href="http://jonraasch.com/blog/a-simple-jquery-slideshow" target="_blank">Jonraasch</a></p>
<p>If you would like to add content over your slider image copy and paste the code below into your css document. The code below is just a content div that holds our content. I position the background and gave it a -1 z-index so it would appear below our content div below. </p>
<pre class="brush:css">
#content {
	width: 920px;
	margin: 0 auto;
	background: rgba(11,11,11, 0.5);
	padding: 20px;
}
</pre>
<p>That is all for this tutorial but you should now have a good understanding of how to create a multiple background sideshow for your website. I did not go over the css code that much because the best way to learn is to download and dissect the code. I hope this tutorial has helped you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/coding/create-a-full-background-image-slider-using-jquery/feed/</wfw:commentRss>
		<slash:comments>44</slash:comments>
		</item>
		<item>
		<title>20 Inspirational Flash like websites that uses Javascript</title>
		<link>http://www.webdevtuts.net/javascript/20-inspirational-flash-like-websites-that-uses-javascript/</link>
		<comments>http://www.webdevtuts.net/javascript/20-inspirational-flash-like-websites-that-uses-javascript/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 20:39:12 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[20]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[roundup]]></category>
		<category><![CDATA[scroll effect]]></category>
		<category><![CDATA[showcase]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=2081</guid>
		<description><![CDATA[Today I have a made a roundup of 20 Inspirational Flash like websites that uses Javascript functionality as it main source of website functional instead of flash. Click on some of the website and check out some of the cool effects. Enjoy! <a href="http://www.webdevtuts.net/javascript/20-inspirational-flash-like-websites-that-uses-javascript/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I have a made a roundup of 20 Inspirational Flash like websites that uses Javascript functionality as it main source of website functional instead of flash. Click on some of the website and check out some of the cool effects. Enjoy!</p>
<h2 style="text-align: center;"><a title="Popular Front Website" href="http://www.popularfront.com/" target="_blank">Popular Front</a></h2>
<p><a href="popularfront" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/1.jpg" alt="Popular Front Website" /></a></p>
<h2 style="text-align: center;"><a title="World of Merix Website" href="http://www.worldofmerix.com/" target="_blank">World of Merix</a></h2>
<p><a href="http://www.worldofmerix.com/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/2.jpg" alt="" /></a></p>
<h2 style="text-align: center;"><a title="Loewy Design" href="http://www.loewydesign.com/" target="_blank">Loewy Design</a></h2>
<p><a href="http://www.loewydesign.com/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/3.jpg" alt="World of Merix Website" /></a></p>
<h2 style="text-align: center;"><a title="Serial Cut Website" href="http://www.serialcut.com/" target="_blank">Serial Cut</a></h2>
<p><a href="http://www.serialcut.com/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/4.jpg" alt="Serial Cut Website" /></a></p>
<h2 style="text-align: center;"><a title="Best Before Website" href="http://bestbefore.ro/" target="_blank">Best Before</a></h2>
<p><a href="http://bestbefore.ro/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/5.jpg" alt="Best Before Website" /></a></p>
<h2 style="text-align: center;"><a title="Nofrks Websites" href="http://www.nofrks.com/" target="_blank">Nofrks</a></h2>
<p><a href="http://www.nofrks.com/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/6.jpg" alt="Nofrks Website" /></a></p>
<h2 style="text-align: center;"><a title="Cpeople Website" href="http://cpeople.ru/" target="_blank">Cpeople</a></h2>
<p><a href="http://cpeople.ru/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/7.jpg" alt="Cpeople Website" /></a></p>
<h2 style="text-align: center;"><a title="Intermission Design Website" href="http://intermissiondesign.com/" target="_blank">Intermission Design</a></h2>
<p><a href="http://intermissiondesign.com/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/8.jpg" alt="Intermission Design Website" /></a></p>
<h2 style="text-align: center;"><a title="Wearex3 Website" href="http://wearex3.com/" target="_blank">Wearex3</a></h2>
<p><a href="http://wearex3.com/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/9.jpg" alt="Wearex3 Website" /></a></p>
<h2 style="text-align: center;"><a title="J and K Website" href="http://www.jandk.fr/" target="_blank">J and K</a></h2>
<p><a href="http://www.jandk.fr/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/10.jpg" alt="J and K Website" /></a></p>
<h2 style="text-align: center;"><a title="Dreamerlines Website" href="http://www.dreamerlines.lv/" target="_blank">Dreamerlines</a></h2>
<p><a href="http://www.dreamerlines.lv/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/11.jpg" alt="Dreamerlines Website" /></a></p>
<h2 style="text-align: center;"><a title="Ormanclark Website" href="http://www.ormanclark.com/" target="_blank">Ormanclark</a></h2>
<p><a href="http://www.ormanclark.com/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/12..jpg" alt="Ormanclark Website" /></a></p>
<h2 style="text-align: center;"><a title="Enterrodagata Website" href="http://enterrodagata.aaum.pt/" target="_blank">Enterrodagata</a></h2>
<p><a href="http://enterrodagata.aaum.pt/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/13.jpg" alt="Enterrodagata Website" /></a></p>
<h2 style="text-align: center;"><a title="Suiepaparude Website" href="http://suiepaparude.ro/" target="_blank">Suiepaparude</a></h2>
<p><a href="http://suiepaparude.ro/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/14.jpg" alt="Suiepaparude Website" /></a></p>
<h2 style="text-align: center;"><a title="Matt Zeilinger Website" href="http://www.mattzeilinger.com/" target="_blank">Matt Zeilinger</a></h2>
<p><a href="http://www.mattzeilinger.com/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/15.jpg" alt="Matt Zeilinger Website" /></a></p>
<h2 style="text-align: center;"><a title="Search Inside Video Website" href="http://searchinsidevideo.com/" target="_blank">Search Inside Video</a></h2>
<p><a href="http://searchinsidevideo.com/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/16.jpg" alt="Search Inside Video Website" /></a></p>
<h2 style="text-align: center;"><a title="Lucino Gene Website" href="http://www.lucino-gene.com/" target="_blank">Lucino Gene</a></h2>
<p><a href="http://www.lucino-gene.com/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/17.jpg" alt="Lucino Gene Website" /></a></p>
<h2 style="text-align: center;"><a title="Rachel Bloch Website" href="http://rachelbloch.ch/" target="_blank">Rachel Bloch</a></h2>
<p><a href="http://rachelbloch.ch/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/18.jpg" alt="Rachel Bloch Website" /></a></p>
<h2 style="text-align: center;"><a title="Peter Pearson Website" href="http://www.peter-pearson.com/" target="_blank">Peter Pearson</a></h2>
<p><a href="http://www.peter-pearson.com/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/19.jpg" alt="Peter Pearson Website" /></a></p>
<h2 style="text-align: center;"><a title="Peter Pearson Website" href="http://www.morphix.si/" target="_blank">Morphix</a></h2>
<p><a href="http://www.morphix.si/" target="_blank"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/jswebsites_sc/20.jpg" alt="Peter Pearson Website" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/javascript/20-inspirational-flash-like-websites-that-uses-javascript/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>10 Amazing Featured Content &amp; Image sliders That you can use for your next project</title>
		<link>http://www.webdevtuts.net/inspiration/10-amazing-featured-content-image-sliders-that-you-can-use-for-your-next-project/</link>
		<comments>http://www.webdevtuts.net/inspiration/10-amazing-featured-content-image-sliders-that-you-can-use-for-your-next-project/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 16:23:12 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[10]]></category>
		<category><![CDATA[content image slider]]></category>
		<category><![CDATA[featured image slider]]></category>
		<category><![CDATA[featured image slider tutorial]]></category>
		<category><![CDATA[featured sliders]]></category>
		<category><![CDATA[image slider]]></category>
		<category><![CDATA[image slider tutorial]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery image slider]]></category>
		<category><![CDATA[List]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=1550</guid>
		<description><![CDATA[Finding the right featured image sliders for a project can be very difficult and time consuming. In this roundup I picked 10 of what I think are the best image sliders that you can use on your next project. The image slider can used for featured sliders, and content sliders. enjoy. <a href="http://www.webdevtuts.net/inspiration/10-amazing-featured-content-image-sliders-that-you-can-use-for-your-next-project/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Finding the right featured image sliders for a project can be very difficult and time consuming. In this roundup I picked 10 of what I think are the best image sliders that you can use on your next project. The image slider can used for featured sliders, and content sliders. enjoy.</p>
<h2><a href="http://designm.ag/tutorials/image-rotator-css-jquery/" title="Create an Image Rotator with Description (CSS/jQuery)">Create an Image Rotator with Description (CSS/jQuery)</a></h2>
<p><a href="http://designm.ag/tutorials/image-rotator-css-jquery/" title="Create an Image Rotator with Description (CSS/jQuery)"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/sliders/1.jpg" alt="Image Rotator"/></a><br />
<i>An image rotator is one great way to display portfolio pieces, eCommerce product images, or even as an image gallery. Although there are many great plugins already, this tutorial will help you understand how the image rotator works and helps you create your own from scratch.</i></p>
<h2><a href="http://www.queness.com/post/443/jquery-image-gallerynews-slider-with-caption-tutorial" title="jQuery Image Gallery/News Slider with Caption Tutorial">jQuery Image Gallery/News Slider with Caption Tutorial</a></h2>
<p><a href="http://www.queness.com/post/443/jquery-image-gallerynews-slider-with-caption-tutorial" title="jQuery Image Gallery/News Slider with Caption Tutorial"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/sliders/2.jpg" alt="jQuery Image Gallery"/></a><br />
<i>A really cool News Slider that uses two scrollers to create very slick effect. It uses scrollTo to scroll both description and image items and it comes with previous, next, play, stop and mouseover events. </i></p>
<h2><a href="http://sixrevisions.com/tutorials/javascript_tutorial/create-a-slick-and-accessible-slideshow-using-jquery/" title="Create a Slick and Accessible Slideshow Using jQuery">Create a Slick and Accessible Slideshow Using jQuery</a></h2>
<p><a href="http://sixrevisions.com/tutorials/javascript_tutorial/create-a-slick-and-accessible-slideshow-using-jquery/" title="Create a Slick and Accessible Slideshow Using jQuery"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/sliders/3.jpg" alt="Slideshow Using jQuery"/></a><br />
<i>In this in-depth web development tutorial, you’ll learn how to create a usable and web accessible slideshow widget for your site using HTML, CSS, and JavaScript (jQuery). In the process, you’ll see the concept of Progressive Enhancement in action.</i></p>
<h2><a href="http://www.dreamcss.com/2009/04/create-beautiful-jquery-sliders.html" title="Create Beautiful jQuery slider tutorial">Create Beautiful jQuery slider tutorial</a></h2>
<p><a href="http://www.dreamcss.com/2009/04/create-beautiful-jquery-sliders.html" title="Create Beautiful jQuery slider tutorial"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/sliders/4.jpg" alt="Beautiful jQuery slider"/></a><br />
<i>This tutorial explains how to develop Create Beautiful jQuery sliders tutorial with image description and name.</i></p>
<h2><a href="http://buildinternet.com/project/supersized/" title="Supersized Full Page Image Slider">Supersized Full Page Image Slider</a></h2>
<p><a href="http://buildinternet.com/project/supersized/" title="Supersized Full Page Image Slider"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/sliders/5.jpg" alt="Supersized Full Page Image Slider"/></a><br />
<i>So, what exactly does Supersized do? Resizes images to fill browser while maintaining image dimension ratio, Cycles Images/backgrounds via with transitions and preloading, and Navigation controls allow for pause/play and forward/back </i></p>
<h2><a href="http://workshop.rs/projects/coin-slider/" title="Jquery Coin Featured Slider">Jquery Coin Slider</a></h2>
<p><a href="http://workshop.rs/projects/coin-slider/" title="Jquery Coin Featured Slider"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/sliders/6.jpg" alt="Jquery Coin Slider"/></a><br />
<i>The coin slider is a featured content slider that can be used in many different ways. It&#8217;s fancy transitions and unique effects makes this slider worth while.</i></p>
<h2><a href="http://nivo.dev7studios.com/" title="Jquery Nivo Featured Image Slider">Jquery Nivo Image Slider</a></h2>
<p><a href="http://nivo.dev7studios.com/" title="Jquery Nivo Featured Image Slider"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/sliders/7.jpg" alt="Jquery Nivo Image Slider"/></a><br />
<i>Nivo slider is another awesome jquery plugin that allows you to create a dynamic image slider with style. </i></p>
<h2><a href="http://spaceforaname.com/galleryview" title="jQuery Content Gallery Plugin">GalleryView: A jQuery Content Gallery Plugin</a></h2>
<p><a href="http://spaceforaname.com/galleryview" title="jQuery Content Gallery Plugin"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/sliders/8.jpg" alt="jQuery Content Gallery Plugin"/></a><br />
<i>GalleryView aims to provide jQuery users with a flexible, attractive content gallery that is both easy to implement and a snap to customize.</i></p>
<h2><a href="http://www.deadmarshes.com/Blog/jQuery%20Slideshow.html" title="Making a Featured Slideshow with jQuery">Making a Slideshow with jQuery</a></h2>
<p><a href="http://www.deadmarshes.com/Blog/jQuery%20Slideshow.html" title="Making a Featured Slideshow with jQuery"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/sliders/9.jpg" alt="Making a Slideshow with jQuery"/></a><br />
<i>I&#8217;m going to walk you through how to apply jQuery to an ever more common development scenario, animating a home page slide show. </i></p>
<h2><a href=""http://www.gcmingati.net/wordpress/wp-content/lab/jquery/svwt/index.html title="slideViewerPro featured Content/Image slider">slideViewerPro</a></h2>
<p><a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/svwt/index.html" title="slideViewerPro featured Content/Image slider"><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/sliders/10.jpg" alt="slideViewerPro"/></a><br />
<i>slideViewerPro is a fully customizable jQuery image gallery engine which allows to create outstanding sliding image galleries for your projects and/or interactive galleries within blog posts.</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/inspiration/10-amazing-featured-content-image-sliders-that-you-can-use-for-your-next-project/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create a awesome images gallery using css3 and jquery</title>
		<link>http://www.webdevtuts.net/css/create-a-awsesome-images-gallery-using-css3-and-jquery/</link>
		<comments>http://www.webdevtuts.net/css/create-a-awsesome-images-gallery-using-css3-and-jquery/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 03:25:49 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[css3 image gallery]]></category>
		<category><![CDATA[css3 transitions]]></category>
		<category><![CDATA[css3 transitions tutorial]]></category>
		<category><![CDATA[css3 tutorial]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery image gallery tutorial]]></category>
		<category><![CDATA[jquery lightbox]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=809</guid>
		<description><![CDATA[Today we will be creating a very simple but great looking css3 image gallery using jquery and css3. If you're a beginner, GREAT! Follow this tutorial and you will have no problem adding jquery plugins to your website <a href="http://www.webdevtuts.net/css/create-a-awsesome-images-gallery-using-css3-and-jquery/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today we will be creating a very simple but great looking css3 image gallery using jquery and css3. The image gallery will be tilted to the side and on hover will move. Whenever you click on the image a lightbox will pop out. So lets begin.</p>
<div class="clear"></div>
<div class="block_dload">
<a class="dload" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/07/downloads/css3-jquery.rar" title="Download" target="_blank">Download</a> <a class="demo" href="http://www.demo.webdevtuts.net/css3-jquery/" title="demonstration" target="_blank">Demo</a>
</div>
<h2>Folder Structure</h2>
<p>In the folder of your for your image gallery you should have 3 folders and 2 files. </p>
<ul>
<li><strong>Css</strong> &#8211; Contains the jquery css </li>
<li><strong>Images</strong> &#8211; Contains images</li>
<li><strong>Js</strong> &#8211; Contains the javascript</li>
<li>index.html</li>
<li>style</li>
</ul>
<p><img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/01/files.jpg" alt="file structure"/></p>
<h2>The HTML Structure</h2>
<p>For the image gallery I simply wrapped the gallery in a div and added the images. Every 4 image has two different classed assigned to them. For example the first 4 images has a class name of thumb-small and for the other 4 images they have a class name of thumb-bottom. </p>
<pre class="brush:php">
<div id="gallery">
&lt;a href=&quot;images/skate1.jpg&quot; title=&quot;You can write anything in here&quot;&gt;&lt;img class=&quot;thumb-top&quot; src=&quot;images/skate1.jpg&quot; alt=&quot;skateboarder&quot; title=&quot;skateboarder&quot;/&gt;&lt;/a&gt;
&lt;a href=&quot;images/skate1.jpg&quot; title=&quot;You can write anything in here&quot;&gt;&lt;img class=&quot;thumb-top&quot; src=&quot;images/skate1.jpg&quot; alt=&quot;skateboarder&quot; title=&quot;skateboarder&quot;/&gt;&lt;/a&gt;
&lt;a href=&quot;images/skate1.jpg&quot; title=&quot;You can write anything in here&quot;&gt;&lt;img class=&quot;thumb-top&quot; src=&quot;images/skate1.jpg&quot; alt=&quot;skateboarder&quot; title=&quot;skateboarder&quot;/&gt;&lt;/a&gt;
&lt;a href=&quot;images/skate1.jpg&quot; title=&quot;You can write anything in here&quot;&gt;&lt;img class=&quot;thumb-top&quot; src=&quot;images/skate1.jpg&quot; alt=&quot;skateboarder&quot; title=&quot;skateboarder&quot;/&gt;&lt;/a&gt;
&lt;a href=&quot;images/skate1.jpg&quot; title=&quot;You can write anything in here&quot;&gt;&lt;img class=&quot;thumb-bottom&quot; src=&quot;images/skate1.jpg&quot; alt=&quot;skateboarder&quot; title=&quot;skateboarder&quot;/&gt;&lt;/a&gt;
&lt;a href=&quot;images/skate1.jpg&quot; title=&quot;You can write anything in here&quot;&gt;&lt;img class=&quot;thumb-bottom&quot; src=&quot;images/skate1.jpg&quot; alt=&quot;skateboarder&quot; title=&quot;skateboarder&quot;/&gt;&lt;/a&gt;
&lt;a href=&quot;images/skate1.jpg&quot; title=&quot;You can write anything in here&quot;&gt;&lt;img class=&quot;thumb-bottom&quot; src=&quot;images/skate1.jpg&quot; alt=&quot;skateboarder&quot; title=&quot;skateboarder&quot;/&gt;&lt;/a&gt;
&lt;a href=&quot;images/skate1.jpg&quot; title=&quot;You can write anything in here&quot;&gt;&lt;img class=&quot;thumb-bottom&quot; src=&quot;images/skate1.jpg&quot; alt=&quot;skateboarder&quot; title=&quot;skateboarder&quot;/&gt;&lt;/a&gt;<!--formatted--></code>
</pre>
<h2>The Css</h2>
<p>For the Css you might wonder what -webkit, and -moz-transform is. Webkit is a Css3 tag that targets the safari web browser and moz-transform is a Css3 tag that targets the Mozilla Firefox web browser. In the css </p>
<ol>
<li><strong>-webkit-transform:</strong> &#8211; Used to rotate the images</li>
<li><strong>-webkit-transition:</strong> &#8211; Used to zoom/ease in on the images</li>
</ol>
<pre class="brush:css">
.thumb-top{
	clear:none;
	padding:10px 10px 30px 10px;
	height:200px;
	width:200px;
	background:#fff;
	-moz-transform:rotate(-4deg);
	-webkit-transform:rotate(-4deg);
	-webkit-transition: -webkit-transform 0.1s ease-in; /* Tells webkit to make a transition of a transform */
	border:1px solid #ececec; /* This border merges with the colour of the shadow in supporting browsers
	but in non-supporting browsers the border acts as the edge of the image */
	margin-bottom:25px;
}

.thumb-bottom{
	clear:none;
	padding:10px 10px 30px 10px;
	height:200px;
	width:200px;
	background:#fff;
	-moz-transform:rotate(-4deg);
	-webkit-transform:rotate(-4deg);
	-webkit-transition: -webkit-transform 0.1s ease-in; /* Tells webkit to make a transition of a transform */
	border:1px solid #ececec; /* This border merges with the colour of the shadow in supporting browsers
	but in non-supporting browsers the border acts as the edge of the image */
	margin-bottom:25px;
}

.thumb-top:hover{
	z-index:100;
	position:relative; /* Make the z-index work in Safari */
	-moz-transform:rotate(-8deg) scale(1.2);
	-webkit-transform:rotate(-8deg) scale(1.2);
}

.thumb-bottom:hover{
	z-index:100;
	position:relative; /* Make the z-index work in Safari */
	-moz-transform:rotate(4deg) scale(1.2);
	-webkit-transform:rotate(4deg) scale(1.2);
}

#gallery {
	margin-top:20px;
}
</pre>
<h2>Inserting and activating jquery plugins</h2>
<p>First things first when activating a jquery plugin is to simply make sure we call in the jquery script. Insert the code below into the head section of your document. The code below calls in jquery, then the two jquery plugins, and finally the plugin Css. </p>
<pre class="brush:css">
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/jquery.lightbox-0.5.css&quot; media=&quot;screen&quot; /&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.lightbox-0.5.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-1.3.2.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.lightbox-0.5.js&quot;&gt;&lt;/script&gt;
</pre>
<p>Now we want to add the script below to the body of our HTML document right before the end of the body tag.</p>
<pre class="brush:php">
&lt;script type=&quot;text/javascript&quot;&gt;
$(document).ready(function(){
$(&quot;.thumb-top,.thumb-bottom&quot;).fadeTo(&quot;slow&quot;, 0.3);
$(&quot;.thumb-top,.thumb-bottom&quot;).hover(function(){
$(this).fadeTo(&quot;slow&quot;, 1.0);
},function(){
$(this).fadeTo(&quot;slow&quot;, 0.3);
});
});

$(function() {
    $(&#039;#gallery a&#039;).lightBox();
});
&lt;/script&gt;
</pre>
<p>For the code below I will try to explain it the best way I can so you can better understand it. I know not everyone is good with inserting Javascript plugins or changing functions. </p>
<p>The first function inside of the script tag targets the light box plugin. The light box plugin is when you click on an image and the image enlarges without being taken to the direct image location.</p>
<p> For this <b>$(&#8220;.thumb-top,.thumb-bottom&#8221;).fadeTo(&#8220;slow&#8221;, 0.3);</b>  function it just tells jquery to fade to anything with the class of thumb-top or thumb-bottom. So whenever your mouse is not on the image it will be darken.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/01/dark.jpg" alt="dark"/> </p>
<p>For this <b>$(&#8220;.thumb-top,.thumb-bottom&#8221;).hover(function(){</b> function it just tells you on hover, or whenever you move over the image with your mouse that it will highlight the image.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/01/highlight.jpg" alt="highlight"/></p>
<p>For the <b>$(&#8216;#gallery a&#8217;).lightBox();</b> function it just asks you what id tag would you like for it to bring up whenever you click on something with the tag of a href. For example I have the images wrapped inside of the id gallery and every image has an a href assign to it so whenever you click on it jquery knows when to call for the second lightbox function.<br />
<img class="aligncenter" src="https://s3.amazonaws.com/webdevtuts/uploads/2010/01/popout.jpg" alt="pop out"/><br />
<b>Note:</b> Rotation does not work in Internet explorer browsers do to lack of support of Css3. </p>
<p>After that you should now have your very own css3/jquery image gallery. I am no jquery expert but I try to help you guys understand it and a easy way instead of using words that you guys are not familiar with. </p>
<h3>Credit</h3>
<p>Credit goes to <a class="block" href="http://csswizardry.com/css3/" target="_blank">Csswizardry</a> for the css3 image gallery.<br />
Credit goes to <a class="block" href="http://leandrovieira.com/projects/jquery/lightbox/" target_blank>Leandrovieira</a> for the lightbox plugin. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/css/create-a-awsesome-images-gallery-using-css3-and-jquery/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>How to make webpage scroll to top of page using jquery</title>
		<link>http://www.webdevtuts.net/javascript/how-to-make-page-scroll-to-top-of-page-using-jquery/</link>
		<comments>http://www.webdevtuts.net/javascript/how-to-make-page-scroll-to-top-of-page-using-jquery/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 03:30:34 +0000</pubDate>
		<dc:creator>Marcell Purham</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[javascript tutorial]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery effect]]></category>
		<category><![CDATA[jquery page scroll tutorial]]></category>
		<category><![CDATA[jquery tutorial]]></category>
		<category><![CDATA[scroll]]></category>
		<category><![CDATA[scroll effect]]></category>
		<category><![CDATA[scroll to top tutorial]]></category>

		<guid isPermaLink="false">http://www.webdevtuts.net/?p=482</guid>
		<description><![CDATA[In this tutorial I will teach you how to add a nice <a href="http://www.w3schools.com/HTML/html_links.asp">anchor link</a> scroll effect to your website using jquery/ HTML.  <a href="http://www.webdevtuts.net/javascript/how-to-make-page-scroll-to-top-of-page-using-jquery/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I remember me always trying to figure out how to make a page scroll to certain section of a website. I mean it was like magic when I first came across it. I was stun! I later tried to find tutorials on how to do it and let me tell you I had no luck. In this tutorial I will teach you how to add a nice <a href="http://www.w3schools.com/HTML/html_links.asp">anchor link</a> scroll effect to your website using jquery/ HTML.</p>
<div class="block_dload"><a class="dload" title="Download" href="https://s3.amazonaws.com/webdevtuts/uploads/2009/07/downloads/scroll.rar" target="_blank">Download</a> <a class="demo" title="demonstration" href="http://www.demo.webdevtuts.net/jquery/scroll.html" target="_blank">Demo</a></div>
<h2>How does it work</h2>
<p>Whenever you click on  a certain link, the page will scroll to that specific link. For example if were to have a long portfolio page and it took forever to reach the bottom I might want to add a link at the bottom of my website that says <strong>Back to top</strong> and when visitors click on that link the page would scroll to the top.</p>
<h2>Script</h2>
<p>Add code below to head section or to a separate javascript file. Tells the document to scroll</p>
<pre class="brush:php">
$(document).ready(function(){
	$(".scroll").click(function(event){
		//prevent the default action for the click event
		event.preventDefault();

		//get the full url - like mysitecom/index.htm#home
		var full_url = this.href;

		//split the url by # and get the anchor target name - home in mysitecom/index.htm#home
		var parts = full_url.split("#");
		var trgt = parts[1];

		//get the top offset of the target anchor
		var target_offset = $("#"+trgt).offset();
		var target_top = target_offset.top;

		//goto that anchor by setting the body scroll top to anchor top
		$('html, body').animate({scrollTop:target_top}, 500);
	});
});
</pre>
<h2>HTML</h2>
<p>Add the code below after your head section. I did not include the entire html but you can download it or view the demo.</p>
<pre class="brush:php">
&lt;body&gt;
&lt;div id="top"&gt;
&lt;h1&gt;Thanks for coming to the top&lt;/h1&gt;
&lt;/div&gt;&lt;!--end top--&gt;

&lt;div id="middle"&gt;
&lt;h1&gt;Thanks for coming to the middle&lt;/h1&gt;
&lt;/div&gt;&lt;!--end middle--&gt;

&lt;div id="bottom"&gt;
&lt;h1&gt;Thanks for coming to the bottom&lt;/h1&gt;
&lt;/div&gt;&lt;!--end bottom--&gt;

&lt;p&gt;&lt;a href="#top" class="scroll"&gt;Go Top&lt;/a&gt;&lt;/p&gt;

&lt;style&gt;

#top{
height:500px;
background:maroon;
margin-bottom:20px;
}

#middle{
height:500px;
background:olive;
margin-bottom:20px;
}

#bottom{
height:500px;
background:teal;
margin-bottom:20px;
}
&lt;/style&gt;
&lt;/body&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webdevtuts.net/javascript/how-to-make-page-scroll-to-top-of-page-using-jquery/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: S3: webdevtuts.s3.amazonaws.com

Served from: www.webdevtuts.net @ 2012-02-07 17:45:33 -->
