Skip to main content

Image Carousel with jQuery

jQuery is a wonderful cross browser javascript library. The effects that can be created using it are simply superb and uber cool. And that without using flash. The two major advantages of not using flash is that you can save on bandwidth as embedded flash objects are not bandwidth friendly. Besides flash is not supported on iPads, meaning which on an iPad the webpage will be a complete piece of junk and nothing else with missing components.
The polaroid effect is not covered in this article. Some other time!

Now there are many jQuery based carousels on the internet. So why need a new one? well, actually you don't. But for example you wish to integrate a carousel in Blogger. The choices become severely restricted and then the customization is often difficult to configure. Most of the carousels available for blogger are simple ones with image transitions and basically nothing more. So I present to you a new form of jQuery carousel which is optimized for blogger.

Before you embark on the journey you can the check out the Demo.
Demo
What will you need?

  • A CSS file for declaring the style of the carousel
  • A javascript file to code its behavior
  • Pictures to be shown
First let's invite the javascript. Since blogger does not allow hosting javascripts, you need to host it yourself.
For this to work you need two javascripts. One is the jQuery library. get the latest one from here.

http://code.jquery.com/jquery-1.6.4.min.js

Embed it before </head> in your template.

<script src='http://code.jquery.com/jquery-latest.js' type='text/javascript'/>

The other one is the one we need to create to make the carousel work.
So here it goes,

 <script type='text/javascript'>  
 $(document).ready(function() {  
   //Set Default State of each portfolio piece  
   $( & quot;.paging & quot;).show();  
   $( & quot;.paging a: first & quot;).addClass( & quot; active & quot;);  
   //Get size of images, how many there are, then determin the size of the image reel.  
   var imageWidth = $( & quot;.window & quot;).width();  
   var imageSum = $( & quot;.image_reel img & quot;).size();  
   var imageReelWidth = imageWidth * imageSum;  
   //Adjust the image reel to its new size  
   $( & quot;.image_reel & quot;).css({ & #39;width&# 39;: imageReelWidth  
   });  
   //Paging + Slider Function  
   rotate = function() {  
     var triggerID = $active.attr( & quot; rel & quot;) - 1; //Get number of times to slide  
     var image_reelPosition = triggerID * imageWidth; //Determines the distance the image reel needs to slide  
     $( & quot;.paging a & quot;).removeClass( & #39;active&# 39;); //Remove all active class  
     $active.addClass( & #39;active&# 39;); //Add active class (the $active is declared in the rotateSwitch function)  
     //Slider Animation  
     $( & quot;.image_reel & quot;).animate({  
       left: -image_reelPosition  
     }, 500);  
   };  
   //Rotation + Timing Event  
   rotateSwitch = function() {  
     play = setInterval(function() { //Set timer - this will repeat itself every 3 seconds  
       $active = $( & #39;.paging a.active&# 39;).next();  
       if ($active.length === 0) { //If paging reaches the end...  
         $active = $( & #39;.paging a:first&# 39;); //go back to first  
       }  
       rotate(); //Trigger the paging and slider function  
     }, 7000); //Timer speed in milliseconds (3 seconds)  
   };  
   rotateSwitch(); //Run function on launch  
   //On Hover  
   $( & quot;.image_reel a & quot;).hover(function() {  
     clearInterval(play); //Stop the rotation  
   }, function() {  
     rotateSwitch(); //Resume rotation  
   });  
   //On Click  
   $( & quot;.paging a & quot;).click(function() {  
     $active = $(this); //Activate the clicked paging  
     //Reset Timer  
     clearInterval(play); //Stop the rotation  
     rotate(); //Trigger rotation immediately  
     rotateSwitch(); // Resume rotation  
     return false; //Prevent browser jump to link anchor  
   });  
 });  
 </script>  


You can embed it in the template in the following ways :


  • Copy Paste Method : Copy paste the entire code before </head>  (easy method)
  • Src Method : Create a javascript file and call it using the src attribute. (Recommended) Downside is that quick editing will be difficult but pages will load much faster as the browser caches those elements. My suggestion is embed the script first (Copy paste method) and once it works perfectly, delete it from there, create a js file and upload it somewhere. then put this code before </head> in your template.
    <script src='link of file.js' type='text/javascript'/>
  • Following the first method(the copy paste method) the screenshot should look somewhat like this,


    and the rest of the code should follow(I have shown only a snippet to show exactly where the lines should be.)
Now let's see the CSS file
Here also you can either do the copy paste method or the src one. Blogger allows inserting CSS from Template > Advanced > Add CSS, so I will do that for now. Once all errors are removed, I can create the src line and remove embedded code.
 /*--Main Container--*/  
 .main_view {  
 float: left;  
 position: relative;  
 }  
 /*--Window/Masking Styles--*/  
 .window {  
 height:300px; width: 900px;  
 overflow: hidden; /*--Hides anything outside of the set width/height--*/  
 position: relative;  
 }  
 .image_reel {  
 position: absolute;  
 top: 0; left: 0;  
 }  
 .image_reel img {float: left;}  
 /*--Paging Styles--*/  
 .paging {  
 position: absolute;  
 bottom: -5px; right: 0px;  
 width: 900px; height: 0px;  
 z-index: 100; /*--Assures the paging stays on the top layer--*/  
 text-align: center;  
 line-height: 0px;  
 display: none; /*--Hidden by default, will be later shown with jQuery--*/  
 }  
 .paging a {  
 padding: 5px;  
 text-decoration: none;  
 color: #transparent;  
 }  
 .paging a.active {  
 font-weight: bold;  
 -moz-border-radius: 10px;  
 -khtml-border-radius: 10px;  
 -webkit-border-radius: 10px;  
 }  
 .paging a:hover {font-weight: bold;}  

So that's the CSS file.

I will now explain the workings. If you want you can skip this paragraph.
main container - outer container containing the images as well as the slider buttons below
window - container for the img reel(which actually contains the images), the height and the width should be the one you want. Change them to suit your style.
img_reel - this has got the images, changing values here is funny, try them out :D
image_reel sets the image attributes, you may wish it to float in the direction of your choice.
paging - choose the paging styles here, height and width are all self explanatory, a high z-index ensures that the element remains on top of other elements as no element should have a higher index than 100.
paging a, active, hover - gives the hyperlink styles, if you have text in the HTML in the sliders(I don't) they will be rendered accordingly.

Now comes the HTML file itself.
You can 
  • either create a Post and embed it in the HTML mode OR
  • create a custom HTML/Javascript gadget and insert the code there. I chose this.
 <div class="container">  
 <div class="folio_block">  
 <div class="main_view">  
 <div class="window">  
 <div class="image_reel">  
 <a class="img" href="http://i.imgur.com/MsDjc.jpg" ><img alt="" src="http://i.imgur.com/MsDjc.jpg" /></a>  
 <a class="img" href="http://i.imgur.com/Cn548.jpg" ><img alt="" src="http://i.imgur.com/Cn548.jpg" /></a>  
 <a class="img" href="http://i.imgur.com/GChA9.jpg" ><img alt="" src="http://i.imgur.com/GChA9.jpg" /></a>  
 <a class="img" href="http://i.imgur.com/mmojx.jpg" ><img alt="" src="http://i.imgur.com/mmojx.jpg" /></a>  
 <a class="img" href="http://i.imgur.com/u8nwS.jpg" ><img alt="" src="http://i.imgur.com/u8nwS.jpg" /></a>  
 <a class="img" href="http://i.imgur.com/67L84.jpg" ><img alt="" src="http://i.imgur.com/67L84.jpg" /></a>  
 </div>  
 </div>  
 </div>  
 <div class="paging">  
 <a href="#" rel="1"><img src="http://i.imgur.com/8Y9jH.png"/></a>  
 <a href="#" rel="2"><img src="http://i.imgur.com/8Y9jH.png"/></a>  
 <a href="#" rel="3"><img src="http://i.imgur.com/8Y9jH.png"/></a>  
 <a href="#" rel="4"><img src="http://i.imgur.com/8Y9jH.png"/></a>  
 <a href="#" rel="5"><img src="http://i.imgur.com/8Y9jH.png"/></a>  
 </div>  
 </div>  
 </div>  

As you can see, the code here is very simple.
The first series of images are the actual image files with the small image as the link and the large full size image as the src.
The second one is the image for a bullet, you can change the image and even put text just before the closing anchor tag that just before </a>

For example
<a href="#" rel="5"><img src="http://i.imgur.com/8Y9jH.png"/>Blah Blah</a>


Save it and you are done. Most probably your carousel will work in a somewhat ugly way. You need to adjust the height and width of the elements to make it align correctly. As for the Polaroid style effect that you see in the demo, that's another story and I will cover it some other day. As for now that's how you make a simple image carousel using jQuery in Blogger.

Comments

Popular posts from this blog

Stalingrad 2013 Movie Review

I saw the trailer of this movie once and really really liked it. What was really interesting was the Thomas Kretschmann acted in a movie with the same name exactly 20 years back. Stalingrad was released in 1993 and the young Kretschmann played the role of a dutiful but conscientious German leutnant of the ill fated 6th Armee. Here also he comes back, slightly older and rugged. The spectacular visuals, the background sound and the lack of background music makes it a realistic watch. That is all positive that I have to say about this trash. Yes, that's what I will this. Naturally, while watching this I brought in similar scenes of Stalingrad (1993) among other war movies. And in comparison this movies cuts so sorry a figure that I dared not watch the entire movie even! The story starts of slow enough and just completely refused to pick up pace. The entire movie seemed to be directed by an amateur school student, bolstered by some insanely talented special effects team. This made t...

Bangalore - Where I now live!

Life in Bangalore Bangalore or Bengaluru is one of the strangest places I have ever been. First, I'll call it Bangalore. In any case I am not really fond of this place, and the official name just makes me go nuts. Literally! Bangalore techie in action! Lets start with the good things in Bangalore. The advantage is that for me there ain't much good here so this paragraph is going to be short! Bangalore has excellent weather, inspite of not being the hills. Weather in Bangalore is always temperate, with the mercury hovering from 68 and 78 Fahrenheit. So yeah, unlike in other Indian metro cities, here we don't have to sweat. Electricity costs are also cut down because we don't need air conditioners or even fans. The other good thing about Bangalore is its vicinity to various tourist spots in South India. Be it the Nilgiris or the Malabar, Konkan or Goa, all are within reach and easily. Seriously??? Now lets begin the negative aspects of the city. I will ment...

Getting back to making stuff

I was off for a while. I mean, I was not. I painted an old shoecase that now looks a gorgeous white cupboard. I fixed my bicycle.  But beyond this, I did not do much beyond what my work paid me to do. So here I am, about to touch a new year of my life - and I am itching to get back into the habit of writing again.  Not just writing stuff here, but also making applications or music.  In fact, after a very long time I feel like sketching again. I think I am going to sketch my wife. Or may be finish my ex wife's sketch. I dunno. But I am gonna get started with a pencil tomorrow. Thanks to chatgpt, I have restarted my application brainstorming and dusted my old Github repos.  I think this is going to be a good run this time.