Build Internet has a brand new theme, and that's only the beginning. Read the full story or hide this bar

Sliding Boxes and Captions with jQuery

Sliding Boxes and Captions with jQuery

This is now a plugin! Check out the announcement post for the Mosaic jQuery plugin. Check the project page for the latest release notes and features!

The Basic Idea

All of these sliding box animations work on the same basic idea. There is a div tag (.boxgrid in my css) that essentially acts as a window where two other items of your choosing “peek” through.

Confused? Cue the helpful diagram -slidebreakdown

From this basic idea we can play around with animations of the sliding element to either show or cover up the viewing area, thus creating the sliding effect.

Step 1 – CSS Foundation Work

Given the basic structure outlined in the helpful image above, we will need to use a little bit of CSS to make it work as intended. The following will make it functional -  review my complete stylesheet in the downloadable file.

The following defines the viewing window (.boxgrid) and sets the default position for images within it to the top left. This is important to make the overlap while sliding work. Dont’ forget that overflow:hidden makes this all possible.

.boxgrid{
	width: 325px;
	height: 260px;
	margin:10px;
	float:left;
	background:#161613;
	border: solid 2px #8399AF;
	overflow: hidden;
	position: relative;
}
.boxgrid img{
	position: absolute;
	top: 0;
	left: 0;
	border: 0;
}

If you aren’t using the semi-transparent captions you are done with CSS – move to Step 2.

.boxcaption{
	float: left;
	position: absolute;
	background: #000;
	height: 100px;
	width: 100%;
	opacity: .8;
	/* For IE 5-7 */
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	/* For IE 8 */
	-MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
 	}

Opacity that plays nice in all browsers is a rough topic, educate yourself if you need to.

Now we’ll need to set up the default starting point for the caption box. If you want it fully hidden initially, you will want the distance from the top or left to match the height or width of the window (.boxgrid), depending on which direction it will be sliding. You can also have it partially visible initially, as .caption .boxcaption illustrates.

 .captionfull .boxcaption {
 	top: 260;
 	left: 0;
 }
 .caption .boxcaption {
 	top: 220;
 	left: 0;
 }

Step 2 – Adding the Sliding Animations

This next stage is a matter of choosing which animation suites you, I have included a bunch of pre-formatted potentials to help you along. Play around with them to find one that fits your needs and style.

$(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	//Vertical Sliding
	$('.boxgrid.slidedown').hover(function(){
		$(".cover", this).stop().animate({top:'-260px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
	});
	//Horizontal Sliding
	$('.boxgrid.slideright').hover(function(){
		$(".cover", this).stop().animate({left:'325px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
	});
	//Diagnal Sliding
	$('.boxgrid.thecombo').hover(function(){
		$(".cover", this).stop().animate({top:'260px', left:'325px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'0px', left:'0px'},{queue:false,duration:300});
	});
	//Partial Sliding (Only show some of background)
	$('.boxgrid.peek').hover(function(){
		$(".cover", this).stop().animate({top:'90px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	});
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'160px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'260px'},{queue:false,duration:160});
	});
	//Caption Sliding (Partially Hidden to Visible)
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'160px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'220px'},{queue:false,duration:160});
	});
});

Step 3 – The HTML

There are a few classes that we created simply as selectors for JQuery. Keep these rules in mind:

  • The div class “.cover” should be assigned to whatever is doing the sliding/movement.
  • Within the div .boxgrid, the img should always come first.

Here’s an example of the HTML I would use for the .captionfull animation:

<div class="boxgrid captionfull">
	<img src="jareck.jpg"/>
	<div class="cover boxcaption">
		<h3>Jarek Kubicki</h3>
		<p>Artist<br/><a href="http://www.nonsensesociety.com/2009/03/art-by-jarek-kubicki/" target="_BLANK">More Work</a></p>
	</div>
</div>

Go Forth and Create

I’ve only touched upon a few options you have, these boxes are your canvases, create away. I would encourage you to download the attached files, as it may be easiest to just copy-paste the parts relevant to your project.

Be sure to post any questions, thoughts, or cool things you’ve done in the comments below!

Wordpress.com stats not installed! Posted Tuesday, March 31st, 2009 / Back to Top

I this post. Tweet
SPONSOR

499 Comments 538 Mentions

  1. Karl Author Editor

    Hi, it was all working well until I wanted to put some clickable image buttons beneath the ‘peek’ image, but now my buttons just show on top of the image image instead of getting revealed behind it :(

    November 7, 2011 · Reply

    • SHIVENDU Author Editor

      Use z-index properties

      January 18, 2012 · Reply

  2. Karl Author Editor

    never mind, it was because i had the “cover” before by button images.

    ##### Also, dont put your real email address in this comment box, the day after i had 4 emails bounce back from spam sent out using my address, i’ve had nothing in the 5/6 years before using this site. #####

    November 8, 2011 · Reply

  3. Carpet Cleaning Miami Author Editor

    Some quick tips for common CSS issues and how to avoid easy pitfalls during your CSS coding process.

    November 11, 2011 · Reply

  4. Helen Author Editor

    Awesome, Thank you :)

    November 12, 2011 · Reply

  5. manoj Author Editor

    hi

    November 16, 2011 · Reply

  6. Eileen Author Editor

    Hi, is there any demo or download files?

    November 20, 2011 · Reply

  7. ZR Author Editor

    not working=(

    November 21, 2011 · Reply

  8. Dan Author Editor

    I am able to get the effect I’m looking for in all browsers but IE. When I open the page in IE 8 specifically I get a warning blocking all scripts or Active X controls. Any ideas why this is happening?

    November 21, 2011 · Reply

    • joe Author Editor

      I found that it was because of the alpha channel filter css property. Strange… Just remove:

      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80)
      -MS-filter: “progid:DXImageTransform.Microsoft.Alpha(Opacity=80)”

      You won’t have transparency in IE but it will not throw the warning/block.

      December 9, 2011 · Reply

  9. Pino Author Editor

    thanks! will try it now!

    November 21, 2011 · Reply

  10. Wczasy Author Editor

    Hi
    thanks!

    November 22, 2011 · Reply

  11. Dien dan SEO Author Editor

    Thanks for this article, I can use for future projects

    November 25, 2011 · Reply

  12. Idris Author Editor

    really interesting and useful…thank you for sharing!!!

    November 26, 2011 · Reply

  13. josan Author Editor

    Nice tutorial and very useful for my homepage

    November 29, 2011 · Reply

  14. SEO Bod Author Editor

    Great gallery, easy to follow tutorial also. I’ll be using these galleries again and again, thanks.

    December 2, 2011 · Reply

  15. raj Author Editor

    hi,
    this nice…

    December 9, 2011 · Reply

  16. centrifuge in india Author Editor

    excellent thats very nice effects found here

    December 10, 2011 · Reply

  17. Dalin UM Author Editor

    that very cool buddy

    December 12, 2011 · Reply

  18. led ekran Author Editor

    thnx for sharing

    December 15, 2011 · Reply

  19. Robin Author Editor

    this is great it’s work fine with me in firefox thanks

    December 21, 2011 · Reply

  20. glenn Author Editor

    excellent stuff,loved it and works in ie.

    December 22, 2011 · Reply

  21. Golf Author Editor

    Thank

    December 25, 2011 · Reply

  22. Nigeria Web design Author Editor

    WOW thanks for the toutorial. I’ll be trying that out on my project.

    December 30, 2011 · Reply

  23. King Author Editor

    this would make a excellent featured slider, thanks!

    January 1, 2012 · Reply

  24. how to get a free ipad 2 no offers Author Editor

    100 % free samples scientifically referred to as the free gifts are a approach used by the firms to judge the desire of the merchandise as well as gauge the actual response on their brand-new product by the individuals just before they start a full-scale current market kick off of the products. These are generally the actual samples that could be found by the people oftentimes free of charge as well as at marked down costs and therefore provided via the internet for all.

    January 4, 2012 · Reply

  25. Mike Author Editor

    In it’s current form this wouldn’t work when the boxgrid is flexible for a responsive site…any ideas if this effect is still possible?

    January 6, 2012 · Reply

  26. Jo Author Editor

    Hi i was wondering: is there a way to have the initial position of the slide the same as “after the hover”?

    thanks!

    January 7, 2012 · Reply

    • Nick Author Editor

      Hi Jo did you did you ever manage to set the same position as after hover ?

      Thanks

      May 4, 2012 · Reply

  27. Kathleen Ely Author Editor

    Is it possible to put multiple links in the caption area or are all A HREF just defined on the underlying image?

    TIA

    January 8, 2012 · Reply

  28. Erwin Author Editor

    Demo ???????
    Unbelievable there isn’t one.
    No ONE will use this then.

    January 12, 2012 · Reply

    • Sam Dunn Author Editor

      Hey there – it seems like you missed the “See Demo” button in the upper left sidebar.

      January 12, 2012 · Reply

      • morteza Author Editor

        thank’s, but there isn’t good place for demo link.
        and it isn’t searchable by browser find.

        January 14, 2012 ·

      • Sam Dunn Author Editor

        Top left sidebar

        January 14, 2012 ·

    • RandomWebDude Author Editor

      *facepalm*

      January 27, 2012 · Reply

  29. Sonu Author Editor

    Hello Sam,

    I’m trying the Full Caption Sliding (Hidden to Visible) effect

    This is not working in IE 7. It works in all other browsers, including IE 8.

    January 12, 2012 · Reply

  30. darealya Author Editor

    Hey there, thanks Sam for sharing, awesome sample.
    Could you please help me:
    I would like to change the sliding to a text content sliding
    Like http://www.apple.com/fr/why-mac/, is it possible?

    Thanks a lot!

    January 13, 2012 · Reply

  31. LM Author Editor

    Sigh, the only complaint I have is that when I get an error stating I didn’t fill out the right fields, that it not jump to a new page and completely eliminate what I’d written.

    Anyway, this is just what I’ve been looking for. My design is laid out in a way that the gallery has little dedicated space – it’s a minor attribute, unlike most galleries. However, it also needs textual descriptions. Thus, this is the perfect solution.

    Excellent share, Sam. Thank you.

    January 17, 2012 · Reply

  32. Juan Author Editor

    Hi, Please I need help to install.

    I try to install with WordPress’s plugin installer and the installation works, but when I try to activate the Mosaic plugin I obtains this message “Bad header”.

    WordPress version: 3.2.1
    OS: Debian 6.
    Web Server: Apache 2.2.16

    PD: I can’t upgrade my WordPress to the last version, because my web hosting only provides WordPress 3.2.1

    please sorry my bad english.
    Thanks.
    Juan

    January 19, 2012 · Reply

  33. gf Author Editor

    hg

    January 20, 2012 · Reply

  34. Stock Market Author Editor

    Awesome query.must use it. It’s changing the look of our site.

    http://www.sirfpaisa.com/stock-market-guide.php

    January 20, 2012 · Reply

  35. Tony Author Editor

    Hay, This is a very good and easy to use tutorial. Im trying to use the div class box.caption.full as in the tutorial. I have got the caption to slide up when the image is hovered over. The only problem I am having is that there is no background to it, so the writing is very hard to read. Any ideas? Any feedback would be greatly appreciated.
    Tony

    January 29, 2012 · Reply

  36. Andy Jones Author Editor

    HI,

    I love this – but for some reason, I cannot adjust the initial view.
    When the page loads, the slider is across the whole of the image. When I rollover it, and then rollout, it goes to the correct position.

    I can’t work out what I need to do!

    Thanks! :)

    February 2, 2012 · Reply

    • JJ Author Editor

      Andy – it looks like you need to modify the absolute position of the boxcaption element in the CSS. I added ‘top:170px;’ right below the position:absolute, in the .boxcaption class and it then starts my ‘black box’ 170px down.

      My CSS is now:

      .boxcaption{
      float: left;
      position: absolute;
      top:170px;
      background: #000;
      height: 100px;
      width: 100%;
      opacity: .8;
      /* For IE 5-7 */
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
      /* For IE 8 */
      -MS-filter: “progid:DXImageTransform.Microsoft.Alpha(Opacity=80)”;
      }

      February 7, 2012 · Reply

    • john Author Editor

      Hi Andy,
      If what you want is for the caption to be hidden on page load, this worked for me: change the boxcaption position in CSS to “top:-170px;”

      .boxcaption
      {
      float: left;
      position: absolute;
      top:-170px;
      background: #000;
      height: 100px;
      width: 100%;
      opacity: .8;
      /* For IE 5-7 */
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
      /* For IE 8 */
      -MS-filter: “progid:DXImageTransform.Microsoft.Alpha(Opacity=80)”;
      }

      February 17, 2012 · Reply

      • James Author Editor

        THANKS FOR THIS! It only took me three days to figure this out, with your help, of course.

        February 29, 2012 ·

  37. mike Author Editor

    if i stripped the margin out of the CSS, would it still work/ I am trying to achieve the effect that http://www.cigna.com uses

    February 3, 2012 · Reply

  38. Anton Author Editor

    Hi. It doesn’t work normal when is in the begining of page. Anybody please Help!

    February 5, 2012 · Reply

  39. chairul Author Editor

    thnx so much, easy to use :)

    February 9, 2012 · Reply

  40. Ph03nix Author Editor

    Ok, I like the boxes and all, I want to use them for the lower half of my site to feature user profiles but for the life of me and 2 days worth of work I can’t get this to center in my div……. Any Ideas?

    February 14, 2012 · Reply

  41. thiet ke web da nang Author Editor

    Hello all ! I’m Mr Dung in Viet Nam, thank so much, easy to use

    February 17, 2012 · Reply

  42. lilja Author Editor

    Great !! thank you :)

    February 18, 2012 · Reply

  43. Ahmet Şen Author Editor

    thanks for sliders. very nice archive.

    February 22, 2012 · Reply

  44. Kim Author Editor

    Hi everyone!

    What a great plugin! Is there any way to have the images scroll or have a slideshow effect with multiple images in one div?

    I love this plugin, thank you Sam!

    February 24, 2012 · Reply

  45. hinh anh dep Author Editor

    Thank you for sharing. I am very good. I will do it for my website

    February 28, 2012 · Reply

  46. Bernard Author Editor

    Thanks. I’m going to use it for my blog. very useful =)

    February 29, 2012 · Reply

  47. manish Author Editor

    my image sliding works well but when i use another functions like tabs (jquery menu tabs) , only of them works.. either tabs or sliding
    any solutions??

    March 3, 2012 · Reply

  48. davide Author Editor

    is possible to add the easing?

    March 5, 2012 · Reply

  49. Raj Author Editor

    Hi
    can we achieve this affect like this on click function, i tried but couldn’t find the logic that if one image clicked and other go down like this:

    https://www.facebook.com/pages/create.php

    March 6, 2012 · Reply

  50. Rene Author Editor

    Hi there,

    I love this stuff but i don’t seem to get the sliders to start in the position they are after you’ve mousedovered (new word i just invented) them.

    check out http://bit.ly/fDWvuK for an example. To in other words i’d like to change the position of the caption on initial load.

    Going slightly nuts on this please advice

    March 7, 2012 · Reply

  51. Richard Author Editor

    Hi I have tried to apply these awesome effects to a Drupal website and have managed to get it to work by putting the code found in the index.php file in a page.tpl . Unfortunately in IE it kill anything using JS and throws all the styling of the website to the left. However it works just fine in Fire Fox no surprise here. I was thinking that if I put the index.php in a templates folder with all the other php files that Drupal uses, and put the css in my css style sheet I could call the css and index.php from the template.php file. I know I will need to create a php function to call these two file but not really sure if this is the correct direction. Any suggestions would be appreciated.

    March 13, 2012 · Reply

  52. Richard Author Editor

    Hi I have tried to apply these awesome effects to a Drupal website and have managed to get it to work by putting the code found in the index.php file in a page.tpl .

    Unfortunately in IE it kill anything using JS and throws all the styling of the website to the left. However it works just fine in Fire Fox no surprise here.

    I was thinking that if I put the index.php in a templates folder with all the other php files that Drupal uses, and put the css in my css style sheet I could call the css and index.php from the template.php file. I know I will need to create a php function to call these two file but not really sure if this is the correct direction.

    Any suggestions would be appreciated.

    March 13, 2012 · Reply

  53. Lorraine Author Editor

    Awesome. Thank you for the information.

    March 18, 2012 · Reply

  54. wkinddwrows Author Editor

    davila pharmacy san antonio [url=http://instablogg.com/5DtwCyy#576] zithromax prednisone z pack [/url] pain medicine for abscessed tooth
    group health riverpoint pharmacy [url=http://instablogg.com/zs71pp4#396] z pac antibiotic sinus infection [/url] holistic medicine minnesota
    rite aid pharmacy massachusetts avenue cambridge [url=http://instablogg.com/myFdL7Z#197] link [/url] mexican border pharmacies adderral
    cvs pharmacy in milford oh [url=http://instablogg.com/OT-Ze85#938] link [/url] paul starr social transformation of medicine
    quotes prevention medicine [url=http://instablogg.com/zA7gEF-#894] zpack and alcohol antibiotics ask [/url] elsevier com preventive medicine
    cannon family medicine [url=http://instablogg.com/PShu8nG#725] zpack antibiotic [/url] hitchcock pharmacy new york
    literature and medicine anthology [url=http://instablogg.com/1HlBDwm#207] zitromax and alcohol consumption [/url] medicines causing of hair loss
    angiosperms and medicine [url=http://instablogg.com/vCmPZZG#041] zithromax z-pak generic drugs [/url] pharm optima chris schauer
    medicine pills identification pictures [url=http://instablogg.com/c2t9Cdw#767] zithromax zpak com azithromycin [/url] welbeck pharmacy london
    candre medicine cabs robern [url=http://instablogg.com/m0pRNTD#511] link [/url] medicine cabinet ba o
    cvs pharmacies drug pricing <a href=http://instablogg.com/5DtwCyy#534] zithromax z pack and beer prescriptions pharmacy online
    nuclear medicine practitioner future salary <a href=http://instablogg.com/zs71pp4#357] z pac msrp medicine ball workou
    what is qid in medicine <a href=http://instablogg.com/myFdL7Z#343] zpack side effects medication vet medicines
    altimeters medicine that helps down syndrome <a href=http://instablogg.com/OT-Ze85#984] zpack generic nuclear medicine management
    prohealth 2 pharmacy new york <a href=http://instablogg.com/zA7gEF-#997] zpack for strep throat antibiotics medicine to numb throat
    is ayruvedic medicine legitimate <a href=http://instablogg.com/PShu8nG#133] zpack for sinus infection antibiotic pharm control rss feed
    cvs pharmacy oakland md <a href=http://instablogg.com/1HlBDwm#874] 1 gram zitromax chlamydia babies killed by patent medicines
    nelsons homeopathic medicine <a href=http://instablogg.com/vCmPZZG#231] z-pak buy zithromax drugs muscle relaxer most powerful medicine
    bristol myers free medicine assistance <a href=http://instablogg.com/c2t9Cdw#403] zithromax zpak com macrolide pharmacy tools instruments
    internal medicine topic collections archives <a href=http://instablogg.com/m0pRNTD#452] link pharmacy warehouse melbourne

    March 19, 2012 · Reply

  55. Android Marketplace Author Editor

    Sliding Boxes and Captions with jQuery | Build Internet I was recommended this website by my cousin. I’m not sure whether this post is written by him as nobody else know such detailed about my difficulty. You are amazing! Thanks! your article about Sliding Boxes and Captions with jQuery | Build Internet Best Regards Shane Schaad

    March 19, 2012 · Reply

  56. web design nepal Author Editor

    nice work thanks for thiss codes really useful…..

    March 19, 2012 · Reply

  57. tkindinrows Author Editor

    civil war medicine supplies [url=http://www.formspring.me/acompliaorder/q/304953822768280061#007] cheap discount order acomplia online [/url] cat dog medicine
    ma pharmacy technician training [url=http://www.formspring.me/acompliaorder/q/304953791696868702#863] [/url] pharmacy tech vs surgical tech
    ms sports medicine and orthapedic center [url=http://www.formspring.me/acompliaorder/q/304953764123510028#501] acomplia online needed [/url] bananas as medicines
    medicine chest the villages florida [url=http://www.formspring.me/acompliaorder/q/304953721907851548#437] acomplia or rimonabant 20mg [/url] traditional medicine is not credible
    abstract poster pharmacy [url=http://www.formspring.me/acompliaorder/q/304953687820735633#509] order acomplia uk [/url] ecological problem in herbal medicine pdf
    medicine hat galaxy theater [url=http://www.formspring.me/acompliaorder/q/304953663862874258#927] link [/url] herbs in medicine
    disrupting ns to study medicine [url=http://www.formspring.me/acompliaorder/q/304953641704366184#926] buy acomplia overnight delivery [/url] medicine infant dosage chart
    people’s pharmacy little rock [url=http://www.formspring.me/acompliaorder/q/304953611924804596#608] buy acomplia diet pills [/url] pragmatar cream pharmacy
    old crow medicine cover song list [url=http://www.formspring.me/acompliaorder/q/304953583369994206#227] acomplia preis 97 [/url] ambulatory care pharmacy md
    rite aid pharmacy in ky [url=http://www.formspring.me/acompliaorder/q/304953560511026060#818] [/url] rite aid pharmacies in tacoma washington
    oriental medicine tucson <a href=http://www.formspring.me/acompliaorder/q/304953822768280061#487] buy online order acomplia henry ford hospital pharmacies
    pharmacy reimbursement international <a href=http://www.formspring.me/acompliaorder/q/304953791696868702#962] online store buy acomplia aaa pharmacy guanica puerto rico
    canon family medicine <a href=http://www.formspring.me/acompliaorder/q/304953764123510028#679] acomplia online cheap medicines prescribed for breast cancer
    alternative medicine herbal therapy for inflamation <a href=http://www.formspring.me/acompliaorder/q/304953721907851548#618] acomplia or rimonabant acne medicines australia
    baylor college of medicine infertility <a href=http://www.formspring.me/acompliaorder/q/304953687820735633#826] medicine ball 30 lbs
    free samples of medicine <a href=http://www.formspring.me/acompliaorder/q/304953663862874258#021] acomplia overnight delivery journal of experimental medicine
    compunding pharmacies in montreal canada <a href=http://www.formspring.me/acompliaorder/q/304953641704366184#206] acomplia overnight mail dead poetic new medicine lyrics
    cvs pharmacy asheville nc <a href=http://www.formspring.me/acompliaorder/q/304953611924804596#639] tennessee board of veterinary medicine
    forensic medicine case studies <a href=http://www.formspring.me/acompliaorder/q/304953583369994206#902] acomplia preis 99 24 hour pharmacy dallas georgia
    loras college sports medicine <a href=http://www.formspring.me/acompliaorder/q/304953560511026060#541] acomplia best price generic herbal medicine for dogs book

    March 20, 2012 · Reply

  58. Inspirational Quotes Author Editor

    Sliding Boxes and Captions with jQuery | Build Internet I was suggested this website by my cousin. I am not sure whether this post is written by him as no one else know such detailed about my trouble. You are amazing! Thanks! your article about Sliding Boxes and Captions with jQuery | Build Internet Best Regards Schaad Lawrence

    March 20, 2012 · Reply

  59. easy backup wizard review Author Editor

    Utilizing writers’ exercises such as “chunking”. They use many websites that contain several creative writing exercises. Writers read an exercise, and do it.

    March 21, 2012 · Reply

  60. saurabh Author Editor

    The above code are really very usefull, thanks a lot !!

    March 23, 2012 · Reply

  61. pkindvjrows Author Editor

    nicaraguan medicine advances [url=http://www.youtube.com/watch?v=NdOiE9ojtnQ#811] buy ventolin inhaler [/url] jackson medical pharmacy san jose
    idaho pharmacy school [url=http://www.youtube.com/watch?v=ycjKNZgkjgE#403] no prescription buy albuterol inhaler online [/url] medicine advertisement
    st john’s university college of pharmacy [url=http://www.youtube.com/watch?v=h1IglwoqyTE#050] link [/url] hippa pharmacy law
    compounding pharmacys st catharines [url=http://www.youtube.com/watch?v=kYa2KcaUZRk#344] buy albuterol inhaler online [/url] beth d’amico student medicine
    discount pet pharmacy [url=http://www.youtube.com/watch?v=H8AuYTcD3ck#726] sulfate inhaler cost buy albuterol [/url] twin cities functional medicine doctors
    future trends in pharmacy retail [url=http://www.youtube.com/watch?v=hdO0IiWnUoU#685] albuterol inhalers price best buy [/url] best poultry worming medicine
    medicine hat wedding consultant [url=http://www.youtube.com/watch?v=8Lx7R9oQNWQ#022] [/url] pharmacy degree online pharmacy technician programs
    facts on egyptian medicine [url=http://www.youtube.com/watch?v=lHxxaBIrInc#444] buy albuterol dosage online no prescription [/url] navy preventitive medicine seminar
    when do medicines become otc [url=http://www.youtube.com/watch?v=ypgKM4kD1-o#063] [/url] tempe frys pharmacy
    greater gwinnett internal medicine associates [url=http://www.youtube.com/watch?v=emSjTV2aT64#698] buy albuterol online cheap drug [/url] what two medicines are in lotrel
    pharmacy customer service <a href=http://www.youtube.com/watch?v=NdOiE9ojtnQ#783] buy ventolin inhaler uk pharmacy abbrevations
    online pharmacy marketing <a href=http://www.youtube.com/watch?v=ycjKNZgkjgE#882] link journal of medicine autism
    chung ching herbal medicine <a href=http://www.youtube.com/watch?v=h1IglwoqyTE#037] nacds pharmacy technician
    virginia pharmacy degree online <a href=http://www.youtube.com/watch?v=kYa2KcaUZRk#563] buy albuterol inhaler online no prescription atrovent hfa inhaler why choose holistic medicine
    pharmacy technician jobs in wyoming <a href=http://www.youtube.com/watch?v=H8AuYTcD3ck#582] sulfate inhaler cost buy albuterol alternative medicine promote campaign
    sc pharm <a href=http://www.youtube.com/watch?v=hdO0IiWnUoU#901] buy albuterol inhalers uk pharmacy on call
    pharmacy structure <a href=http://www.youtube.com/watch?v=8Lx7R9oQNWQ#370] link pharmacies and henderson nv
    on site pharmacy <a href=http://www.youtube.com/watch?v=lHxxaBIrInc#989] albuterol no prescription buy ventolin online cvs pharmacy in pr
    ho ch medicine urodynamic <a href=http://www.youtube.com/watch?v=ypgKM4kD1-o#960] buy albuterol online without prescription sam’s club pharmacy katy
    cranial osteopathy medicine definitions <a href=http://www.youtube.com/watch?v=emSjTV2aT64#985] where can i buy albuterol online discount algonquian medicines

    March 23, 2012 · Reply

  62. fashion designers Author Editor

    You can definitely see your skills in the paintings you write. The arena hopes for even more passionate writers such as you who aren’t afraid to say how they believe. Always go after your heart.

    March 23, 2012 · Reply

  63. görüntülü sohbet Author Editor

    Zune and iPod: Most people compare the Zune to the Touch, but after seeing how slim and surprisingly small and light it is, I consider it to be a rather unique hybrid that combines qualities of both the Touch and the Nano. It’s very colorful and lovely OLED screen is slightly smaller than the touch screen, but the player itself feels quite a bit smaller and lighter. It weighs about 2/3 as much, and is noticeably smaller in width and height, while being just a hair thicker.

    March 24, 2012 · Reply

  64. Sabre Author Editor

    Hi Sam, thnx for the captions!

    I do have an issue, when using a DOCTYPE, the captions are not positioned at the right spot until hovered, try adding a doctype in the demo, you will see the issue/bug. Is there a fix for this? THANKS!

    March 25, 2012 · Reply

    • Sabre Author Editor

      Whoops I already figured it out :) it was a CSS issue.

      Adding ‘px’ after the top and left values in the boxcaptions, this is not needed when using 0.

      March 25, 2012 · Reply

  65. Paid Directory List Author Editor

    Fast Approval 3000 + Paid Directory List, Get Thousands of High Quality

    March 27, 2012 · Reply

  66. Joomla Developer Nepal Author Editor

    I came across this site and found this great tutorial, just what I was looking for. Firstly, thanks for the knowledge and run through, it helped a lot

    March 27, 2012 · Reply

  67. impapeted Author Editor

    [url=http://game-online-reviews.com/angry-birds-space-2/]Angry Birds Space[/url]

    March 28, 2012 · Reply

  68. Janelle Tiulentino Author Editor

    This is a great tutorial. Thank you!!!

    April 29, 2012 · Reply

  69. Parels Author Editor

    Cool stuff, i think i am going to use this on more then one site.

    May 1, 2012 · Reply

  70. Crystal Author Editor

    Hi I am wondering if you can help me out.
    I need something that is simliar to the way this works, but it is different. I will have a page gallery but instead of having the rollover slide over the image I would like it to slide out to the right, left, top, or bottom of the image. Can I change this code to work like this or do I need something totally different? I have been looking all over for javascript to slide out from one direction of the image but I can’t seem to find anything. You can see by this link (http://www.pfxn.com/redesign/index_HP.html) that I am pretty stuck, didn’t really make it far within the code.

    May 1, 2012 · Reply

    • crystal Author Editor

      I am getting emails say there is a reply posted on my comment, but I am not seeing anything.

      May 5, 2012 · Reply

  71. Maurizio Petrachi Author Editor

    Molto ma molto interessante!

    May 3, 2012 · Reply

  72. Jonathan Author Editor

    Nice one, this is very useful. Thank you!

    May 7, 2012 · Reply

  73. jipeus Author Editor

    very cool tutorial! i’m sure gonna put this on my projects to come, and when i post an article bout this, i’m putting this url as my source :)

    May 8, 2012 · Reply

  74. Công ty quảng cáo Author Editor

    content blog is very good !
    thank you very much

    May 9, 2012 · Reply

  75. Ahmet ŞEN Author Editor

    thanks. very nice sliders.

    May 9, 2012 · Reply

  76. Kim Author Editor

    Thank you for this great tutorial! :)
    Does it also work whit image shaddows?
    Here is my link (1st Picture):
    http://www.schaugarten-koehler.at/kimkoehler/index2.html
    It look great, but it isn’t hidden.
    Thanks!

    May 11, 2012 · Reply

  77. mark Author Editor

    this works great..upon first load, however i am using quicksand jquery filter and when i click on a link to apply a filter to my ul this boxcaption jquery no longer works. any ideas why?

    May 13, 2012 · Reply

 

Join the Conversation

Back to Top / Comment RSS

2012 Build Internet. Created by One Mighty Roar. Icons by Komodo Media. Back to Top