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

453 Comments 496 Mentions

  1. Bogdan Pop Author Editor

    There’s a similar effect on http://www.sidd.ca/showcase.php . Nicely done, better coding.

    Bogdan Pop’s last blog post..Design for grandma too!

    April 1, 2009 · Reply

  2. Callum Chapman Author Editor

    nice stuff! love the effect on the demo page ;) cheers!

    Callum Chapman’s last blog post..Batch Image Resizing in Photoshop

    April 1, 2009 · Reply

  3. Amy Stoddard Author Editor

    I noticed that if I change the tag to:

    That the page loads with the hover state activated. How do I get rid of this? Any idea why its doing this?

    April 1, 2009 · Reply

  4. Amy Stoddard Author Editor

    Sorry…my post didn’t come through. If I add the DOCTYPE to the opening HTML tag, the page loads w/ the hover state activated. I’m using FF 3.0.8 on Mac OSX 10.4.11.

    April 1, 2009 · Reply

  5. Idemium Author Editor

    This helps us to forget about Flash for to add interactivity for little elements.
    Thank you.

    Idemium’s last blog post..Actualités

    April 1, 2009 · Reply

  6. Jørgen Author Editor

    Great tut! Looks similar to what I do over at http://www.TutorialMagazine.com :)

    April 1, 2009 · Reply

  7. ozzysong Author Editor

    Nice implementation of the slide effect.

    ozzysong’s last blog post..Slides creativos con jQuery

    April 1, 2009 · Reply

  8. SIDD Author Editor

    Bogdan Pop – thanks for the mention! Had to come check out the new referring site that popped up in our stats. Not bad.

    April 1, 2009 · Reply

  9. Vivianne Author Editor

    Perfect! I would love to see this hover effect integrated with a simple image gallery. I can’t find this anywhere…

    Thanks for sharing!

    Vivianne’s last blog post..vimello: Me falaram que fulano morreu e eu comecei a rir, primeiro de abril e tal… Mas morreu mesmo. :X

    April 1, 2009 · Reply

  10. julian Author Editor

    So… how would one turn this into a fading slideshow while still preserving the nifty hover/caption effect?

    April 1, 2009 · Reply

  11. Ben Holmen Author Editor

    Very nice effects, and well executed. Thanks!

    April 1, 2009 · Reply

  12. rohnn Author Editor

    @Amy Stoddard
    I had the same problem : Win XP, FF2, IE6, Chrome… etc.

    I think the problem comes from the css and the positionnig of the boxcaption and it’s interpretation:

    You just need to add the unit after the positioning:

    .captionfull .boxcaption { top: 260px;…
    .caption .boxcaption {top: 220px;…

    for 0, you dont need unit a 0 is absolute 0%=0px=0whatever… so will be understood.

    I guess with a doctype unit needs specified for non-zero values as otherwise is intrepreted wrongly (or not at all) since too many to choose from: 260% !=260px!=260em != 260whatever

    This solved the problem for me. (tested: html4.01 + xhtml11 strict)

    April 1, 2009 · Reply

  13. Chris Raymond Author Editor

    I get the whole thing, except how and where do you call this jquery to achieve the animation?

    Chris Raymond’s last blog post..Golden anniversary scrapbook

    April 1, 2009 · Reply

  14. Sam Dunn Author Editor

    @Jorgen
    You run a quality site, it played a part in the idea for this tutorial, thanks for that!
    @julian
    This is not quite meant to be a slideshow, however if you are interested theres a great tutorial here : http://jonraasch.com/blog/a-simple-jquery-slideshow
    @rohnn
    Nicely done, thanks for saving me some explanations
    @Chris Raymond
    You’ll want to put the jQuery in the header, if you look at the downloadable files you’ll hopefully get a good sense of where to put what.

    April 1, 2009 · Reply

  15. eddie Author Editor

    thanks for the great work!But I have a question:Can I get a inner border when mouseover the image.just looks like this site(but it use flash)http://www.ciriljazbec.com/

    April 1, 2009 · Reply

  16. Bajzito Author Editor

    Very awsome tutorial, thx a lot for it. I will for sure use this in some of my projects :)

    Bajzito’s last blog post..Slávna Helvetica

    April 2, 2009 · Reply

  17. JDStraughan Author Editor

    Great tutorial. Added to http://tutlist.com

    JDStraughan’s last blog post..Create a Ajax based Form Submission with jQuery

    April 3, 2009 · Reply

  18. Max Author Editor

    I love your script and it will be very useful for a website i’m cooking by now.

    I use it with “slidedown” to show a text hidden by the image. It works, but if I give an absolute positioning to my text (by styling h4 and h5…) , they appear in front of the image.

    Is there a way to solve this problem ?

    Best Regards,

    Max

    April 4, 2009 · Reply

  19. Mahbub Author Editor

    I had done something like this and put a post here http://www.jquerymagic.com/2009/03/how-to-make-a-beautiful-portfolio-gallery-using-jquery-animate/

    It’s using no plugin as well. Just a day before this one :)

    Mahbub’s last blog post..Guitar Chord Finder : Yet another old day script

    April 4, 2009 · Reply

    • Yo Author Editor

      Yo stop being a cock blocker, let Sam do his thing.

      March 11, 2011 · Reply

  20. Max Author Editor

    Well, I found a (simple) way to do the trick : adding z-index to the image to get it to stay over the content even with positioning enabled.

    Once more, thanks for this wonderful script !

    April 6, 2009 · Reply

  21. Omar Ramírez Author Editor

    Nice work!, Love It!

    April 7, 2009 · Reply

  22. Cookie Author Editor

    Regarding Rohnn’s explanation on how to fix the page loading with the captions in an up state.
    I don’t understand how to fix the issue sorry?
    Can anyone elaborate? (layman’s terms lol).

    Cheers, Cookie.

    April 8, 2009 · Reply

    • Demonike Author Editor

      Look in the CSS for definitions .caption or .fullcaption … The top attribute should not be zero as this means the overlay starts at the top. It should be the height of your box minus the amount you wish for it to be seen from the bottom (i.e. caption header, title, etc.). Put some values in the “top” attribute and experiment, you get the logic soon enough. I had the same question first :)

      April 11, 2011 · Reply

  23. Jive Author Editor

    @Cookie – the answer of your question is simply just add “px” “em” or “%” on
    .captionfull .boxcaption {
    top: 260;<—-px,em or % here
    left: 0;
    }
    .caption .boxcaption {
    top: 220px;<—-px,em or % here
    left: 0;
    }

    works for me.(tested: html4.01 + xhtml11 strict)

    Thanks :)

    April 9, 2009 · Reply

  24. Stefan Author Editor

    Great job. Thanks for that!!

    April 9, 2009 · Reply

  25. cookie Author Editor

    Cheers Jive.
    I worked it out lastnight but didnt have chance to reply

    April 9, 2009 · Reply

  26. cookie Author Editor

    Don’t suppose anyone knows how this’ll work with with jQuery lightbox v0.5? I’m trying to get it working on the thumbnails with it……..

    April 9, 2009 · Reply

  27. cookie Author Editor

    Cool, i can confirm that it works with jQuery lightbox v0.5 on: WinXP FF3.0.8 & IE 7.0.5.

    Thanks a million Sam.

    April 9, 2009 · Reply

  28. Karen Author Editor

    So does this code not work with any doctypes? I am trying all of them and the sliders just won’t position correctly. The demo page does not have any doctype associated to it so can anyone out there get this to work on a web standard site?

    April 10, 2009 · Reply

  29. Tyler Author Editor

    Awesome tutorial! This is exactly what I’m looking for for my site, but I’d prefer to use MooTools to achieve it. Unfortunately, I don’t know how to properly port this… Anyone know where I can find a similar tutorial for achieving this effect with MooTools or perhaps could explain how to port this?

    Thanks!
    Tyler

    April 10, 2009 · Reply

  30. Michael Author Editor

    This is great but I’m worried about it slowing down my page loads. Is that going to be a problem?

    April 10, 2009 · Reply

  31. Alexandre Broggio Author Editor

    Very cool

    April 12, 2009 · Reply

  32. thorn Author Editor

    Looks great, Sam. But I don’t like that a hidden part is visible while a cover is loading. It’s impossible to create a secret area under the cover because of this nuance.

    thorn’s last blog post..COMINDWORK/BLOG: Project Management Certifications [godzhesas edited]

    April 13, 2009 · Reply

  33. BeyondRandom Author Editor

    Im using it now! Thanks for the easy tutorial on this!

    BeyondRandom’s last blog post..Poker Hand Values

    April 13, 2009 · Reply

  34. koew Author Editor

    Another live example can be viewed at Tutorial Magazine: http://www.tutorialmagazine.com/

    I bet the tutorial is added there as well ;)

    koew’s last blog post..I Want Vin Diesel in Every Movie I See

    April 13, 2009 · Reply

    • Zach Dunn Author Editor

      @koew

      You’re absolutely right. Tutorial Magazine played a large role in motivating that particular variation of the effect. Jørgen should be congratulated on running such a fantastic site. If you’ll notice, he was actually one of the first to comment on this very tutorial.

      April 13, 2009 · Reply

  35. Frank West Author Editor

    Really nice examples, simple but effective and yet another effect that I will be using as time goes by.

    Thanks!

    April 13, 2009 · Reply

  36. Oliver Leitner Author Editor

    A question, where did you find that art, looks pretty good)

    Oliver Leitner’s last blog post..The new OpenSuSE Studio in Action

    April 14, 2009 · Reply

  37. SohoInteractive Author Editor

    very cool script.
    I wish it had manual controllers (e.g. close X) instead of auto close on mouseout

    K.

    April 14, 2009 · Reply

  38. cookie Author Editor

    Hi all, Is their anyway to make it so that the captions text is not transparent, only the caption box? I noticed that with my white images, the text’s transparency is quite visible!?

    April 14, 2009 · Reply

  39. Jørgen Author Editor

    @Zach Dunn Thanks for the kind words, coming from you that does actually mean a lot :) You guys run a good ship here at buildinternet too!

    I was thinking of making a tutorial about the slide effect, but you got ahead of me, so from now in I’ll make no improvements to my site in fear of you guys making great tutorials about them! ;)

    Keep up the good work,

    Jørgen
    http://www.TutorialMagazine.com

    Jørgen’s last blog post..The first two months – and why I love Twitter

    April 17, 2009 · Reply

  40. Graffhead Author Editor

    DOCTYPE – I had the same issue once I added the DOCTYPE. Adding px to the css fixed the issue.

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

    Graffhead’s last blog post..123 Klan + MSK in Hollywood

    April 19, 2009 · Reply

  41. Cookie Author Editor

    Any advance on my last query?
    //
    Hi all, Is their anyway to make it so that the captions text is not transparent, only the caption box? I noticed that with my white images, the text’s transparency is quite visible!?
    //

    April 20, 2009 · Reply

  42. Sam Dunn Author Editor

    @Cookie
    I noticed that was the case when I was first putting this together. I tried playing around with resetting the opacity levels individually on the text, but it didn’t seem to work. I too would be curious if anyone has a work around.

    April 20, 2009 · Reply

  43. Jørgen Author Editor

    @Cookie, @Sam Dunn: I have the same problem, but what you can do is to keep the text at 100% opacity, and then use a transparent .png image with a 90ish % black fill as a background in the sliding box. Of course you’ll have to use some sort of png opacity fix for IE users, but it works.

    Jørgen’s last blog post..33 Best Photoshop Tutorials of April 2009

    April 21, 2009 · Reply

  44. Anime Art Author Editor

    Superb !! the best part is it also works in my cms :D thank u :)

    April 21, 2009 · Reply

  45. xdotx Author Editor

    How could I make this work with external classes?

    April 21, 2009 · Reply

  46. Pradeep CD Author Editor

    Awesome sliding boxes…

    I will use it for sure…

    thanks..

    April 22, 2009 · Reply

  47. nifer Author Editor

    I had a problem
    when the site star the grid is in the bootom of the image, if I hover the grid show like should be…
    sorry for my english, Im from Argentina.

    nifer’s last blog post..cocinero pervertido

    April 22, 2009 · Reply

  48. MattQ90 Author Editor

    Hi, the first thing I want to say is that I absolutely love this jquery effect and it gave me ideas on how to enhance my portfolio.

    The only problem I am facing is with flash objects. I embedded 3 flash elements in my website (twitter, lastFM and DailyMugshot). LastFM is covered with a slide the way it is supposed to be. Twitter and DailyMugshot unfortunately aren’t (at least not in FF3 windows and IE). The slides are positioned underneath the flashobject or in IE next to the object (which makes it invisible due to the hidden overflow)

    Anyone have a solution?

    Thanks in advance

    April 26, 2009 · Reply

  49. Cookie Author Editor

    This is off topic but i’m sure someone can help.
    I am trying to reproduce a similar text roll-over effect with jquery, as can be seen on the nav here: http://www.designshowliverpool.com
    Does anyone know where i might find the answer?
    Many thanks.
    C.

    April 28, 2009 · Reply

  50. Derleth Author Editor

    :O esta buenisimo :P gracias chato encima es gratis :D

    nice i love you xD

    April 28, 2009 · Reply

  51. lars Author Editor

    Has anyone had issue with the sliding boxes getting to work in Safari? I cannot get them to work in it on or offline. Has someone run into this problem? Anyone got a fix is there is a problem. (Using Safari 2.0.4).

    Thanks in advance.

    May 1, 2009 · Reply

  52. lars Author Editor

    And yes, javascript is enabled just in case you were going to ask.

    May 1, 2009 · Reply

  53. drew Author Editor

    How can i get this to load into a div from thumbnails?

    May 3, 2009 · Reply

  54. rohnn Author Editor

    @Lars.

    I have no problem running it on safari v3.1 on win XP.
    Would you happen to have an URL where we could check out your page & code ?

    May 3, 2009 · Reply

  55. ciddey Author Editor

    It is possible to do with this examples something like this ? http://mixcss.com/
    I have no idea :?

    May 5, 2009 · Reply

  56. cookie Author Editor

    @ciddey
    nice effect that matie.

    Anybody any wiser on how to produce this nav roll-over here then?: http://www.designshowliverpool.com

    May 5, 2009 · Reply

  57. Paul Author Editor

    I just tried this out and was up and running in about 10 minutes. Thanks for the great tutorial.

    May 10, 2009 · Reply

  58. Stephane Author Editor

    Problem :
    Table cannot be include in “.cover” element, CSS doesn’t works. Moreover “span class” is not fully recognized.
    See example :
    http://www.lacavedepheeric.com/index2.php
    The table I wish include is : http://www.lacavedepheeric.com/EssaiFeuilleVin.html

    May 13, 2009 · Reply

  59. Rama Mohan Author Editor

    Great! thank you

    May 14, 2009 · Reply

  60. web design Author Editor

    This is wonderful tutorial! Love the sliding cover effect, is what i was looking at!

    May 23, 2009 · Reply

  61. Candace Haynes Author Editor

    I love this script… But I suck at this kind of coding (my mind won’t grasp it).
    What I want is…

    this script and
    http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding

    + a blender lol

    May 25, 2009 · Reply

  62. Laura Author Editor

    For the life of me I cannot get this to work in IE OR Safari. Works great in Firefox. Please help! I’ve followed the tutorial and downloaded the files, but am obviously missing something!

    May 26, 2009 · Reply

  63. wpdigger Author Editor

    I love the simplicity of it and I like the functionality. Great job on the tutorial.

    wpdigger’s last blog post..Theme Membership Sites – Are those really useful

    June 1, 2009 · Reply

  64. Tom Author Editor

    Great tut, really simple and beautiful…
    I have an issue though, maybe it is a stupid thing but I am getting stuck…
    It works well on my side when having one single page: on my main page I have a menu that “ajax” call the page containing my boxes… all links to js, css are on my index… and nothing happens…
    when i put my boxes onto my index, it works… looks like there a sort of dependency, but cannot find where… and kind of newbie with jquery…

    June 8, 2009 · Reply

  65. Nikolay Author Editor

    Thanks a lot! Very helpful.

    June 13, 2009 · Reply

  66. X-factor Author Editor

    Is there a reason why the alignment of my wordpress page is thrown off when I use this code? Please help.

    June 15, 2009 · Reply

  67. webmasterdubai Author Editor

    great job and nice work and good plugin.

    June 19, 2009 · Reply

  68. Gibi Author Editor

    Great work, i can add to jquerys.ru?

    June 20, 2009 · Reply

  69. Michael Author Editor

    @cookie how did you get it to work with lightbox. I’ve been trying but getting no where.

    @sam wow, great job!

    June 26, 2009 · Reply

  70. nathfla Author Editor

    hi how are you, just wanted to let you know that I love your tutorials.
    I have a quick question for you or anybody that can help me. I was trying out your:
    Sliding Boxes and Captions
    but its not working when i implemented in a new page, the caption box starts off in the middle then when you hover over it it goes to the bottom and then it hides, its going nuts i tell you… and i really did try, please advise me,,, what am I doing wrong.

    Thank you for your time guys

    June 29, 2009 · Reply

  71. nathfla Author Editor

    hey everyone sorry about the last help request, I was able to fix it… Ahhh love it I’ll share with you as soon as i’m done.

    June 29, 2009 · Reply

  72. JKLstar Author Editor

    Hello.

    I know this is the dumbest questions ever for the power brains, but .. huh … Where do I add my own photos?

    It is a 719px width and 480 height.

    This is sliding boxing is awesome and I’m gonna try hard to get it working.

    Thank you.

    July 6, 2009 · Reply

  73. Ross Naumov Author Editor

    I am trying to position multiple slide boxes side my side but i can’t seem to repeat the function properly. I have created one successfully but i now want to use this same function a few times on the one page. Can anyone help?

    July 7, 2009 · Reply

  74. Cedrick Author Editor

    woooowww! son lo maximo! esto esta genial lo estuve buscando por todos lados! un saludo chicos! son geniales! Gracias!

    July 7, 2009 · Reply

  75. ithemesdotnet Author Editor

    Awesome plugin! I can’t wait to implement it.
    .-= ithemesdotnet´s last blog ..Eventina WordPress Theme =-.

    July 8, 2009 · Reply

  76. estatic Author Editor

    I don’t know why this is happening, but for some reason the boxes just all of a sudden stopped working. Visually they look correct, but they aren’t sliding when the mouse rolls over it.

    Is this happening to anyone else?

    July 10, 2009 · Reply

  77. divpix Author Editor

    I have this working correctly on a dev site in Firefox (Mac & PC), ie6,7&8 (PC). I have 3 boxes aligned and all is great … except … in Safari 3&4 (Mac) only one of the areas displays – the last of the 3 covers up the first two. I cannot figure out why. Any ideas?

    July 23, 2009 · Reply

    • Sam Dunn Author Editor

      @divpix
      I neglected to include DOCTYPE in the download/demo, I have heard a lot of people have fixed their problems by adding it in.

      July 23, 2009 · Reply

  78. Arthur Ebbinger Author Editor

    I am trying to implement this into a cubecart site for my company and everything shows properly except the captions don’t slide. I do have a bunch of other scripts that i have created and implemented that use jquery could these be causing any problems?

    July 25, 2009 · Reply

  79. Sam Dunn Author Editor

    @Arthur Ebbinger
    I would reference my previous comment and if that doesn’t work then I would try removing the other scripts for a test to see if they are impacting sliding boxes

    July 25, 2009 · Reply

  80. Justin Slack Author Editor

    Fantastic tutorial Sam. I’ve implemented it on my blog home page with a minimum of fuss.

    July 26, 2009 · Reply

  81. Noah Posnick Author Editor

    Having a bit of trouble with the script. Upon page load, the caption panel is shown when it should be hidden, when you put your mouse over it, it then slides down and acts as it should. I made sure all of the height values had “px” but that didn’t fix it.

    Please help. Maybe you can see something I’m overlooking. Thanks in advance! Here’s the work in progress site:

    http://www.thethrillmill.com/wip/

    July 27, 2009 · Reply

  82. Noah Posnick Author Editor

    Nevermind, got it. I didn’t see the “top” property in .boxcaption because it was buried after fixes for IE.

    July 28, 2009 · Reply

  83. Brett White Author Editor

    Love it!!

    But I do have one problem, im wanting the box area to be a clickable link, not just a text link, how do I do that? Ive tried a few things but no luck, very much like http://www.tutorialmagazine.com, any advice would be great! :-)

    Cheers

    August 3, 2009 · Reply

  84. art is life Author Editor

    Does anyone have a work-around fix for Active X blocking this?

    August 3, 2009 · Reply

  85. Madeglobal Author Editor

    Someone asked how to do this same effect in mootools (I think Jquery is easier to understand!). After much headscratching, I came up with the following code, which seems to work (I’ve only done the “peak” but you’ll see how to do all the others):

    window.addEvent(“domready”, function(){
    $(document.body).getElements(“.boxgrid.peek”).each(function(el) {
    var fx = new Fx.Morph(el.getElement(“.cover”),{ duration:200, link:’cancel’ });
    el.addEvents({
    “mouseenter”: function(){ fx.start({ ‘top’: 50 }); },
    “mouseleave”: function(){ fx.start({ ‘top’: 0 }); }
    });
    });
    });
    .-= Madeglobal´s last blog ..WordPress Better Protected Password Pages =-.

    August 4, 2009 · Reply

  86. colorjuice Author Editor

    Hey, that’s a wonderful application. But it doesn’t work in my case. What I’ve done wrong? I’ve placed the code in step 3 in a html-document (in the body-tag), but when I look at it in a browser (firefox 3.0.13) it has problems with the css and the link http://www.nonsensesociety.com/2009/03/art-by-jarek-kubicki/” href=”http://www.nonsensesociety.com/2009/03/art-by-jarek-kubicki/” rel=”nofollow”>http://www.nonsensesociety.com/2009/03/art-by-jarek-kubicki/” target=”_BLANK”>More Work . Can you help me? That would be very nice! Thanks a lot. greets colorjuice

    August 9, 2009 · Reply

    • Sam Dunn Author Editor

      @colorjuice
      Typically if you include the DOCTYPE as I have mentioned above it irons out most problems if you followed the tutorial correctly. Good luck!

      August 9, 2009 · Reply

  87. Cracks Author Editor

    what about accessibility, and graceful degradation? how does this fair in those respects?

    August 11, 2009 · Reply

  88. web design glossop Author Editor

    Wow, these are really cool. I’m gonna implement these into our portfolio site very soon!

    August 12, 2009 · Reply

  89. sherie Author Editor

    Great Script – Many applications for use – Thanks for sharing :-).

    @rohnn – Thanks for picking up on the css – missed that and was also obsessing that doctype was to blame – spent far too much time before reading your fix!!

    August 15, 2009 · Reply

  90. Vin Thomas Author Editor

    Great effect, but it doesn’t seem to be working right in the newest build of webkit.
    .-= Vin Thomas´s last blog ..8 Questions With Creator of Rethink Monthly, Bo Lane =-.

    August 18, 2009 · Reply

  91. Vin Thomas Author Editor

    It worked on refresh. Hmm…must not have loaded the script right the first time. Sorry…
    .-= Vin Thomas´s last blog ..8 Questions With Creator of Rethink Monthly, Bo Lane =-.

    August 18, 2009 · Reply

  92. Sheryll Author Editor

    Hi, I love this script and it worked great until I put it on the page it needs to be on with other scripts as well. I have javascripts pagination and lightbox scripts on the same page. I tested it and the cause of the sliding boxes not to work is definitely the other scripts on the page.

    Does anyone know how to fix this?

    August 18, 2009 · Reply

  93. jeff dunbar Author Editor

    This is pretty cool! I’ll have a play with this todayasfasfasf.

    August 19, 2009 · Reply

  94. schuessler Author Editor

    Another great article. Peaple who give this information a re a win for the web. Keep on going.

    August 20, 2009 · Reply

  95. naturmed Author Editor

    Thanks. I agree that is good.

    August 20, 2009 · Reply

  96. Sean Author Editor

    Hmm… now, suppose you the original image with a css sprite of the original + final image that actives on hover, to get a completely degradable solution. That sounds ballin’.
    .-= Sean´s last blog ..Apache start problem =-.

    August 23, 2009 · Reply

  97. Mohammad Khalil Bin Said Author Editor

    A better sliding box/caption than the early that i found & use. This is very easy (page loading also), great for site and blogs.. thnku :)

    August 24, 2009 · Reply

  98. Author Editor

    Brilliant mates !!! Thanks for sharing…
    .-= Jµ´s last blog ..Hello world! =-.

    August 24, 2009 · Reply

  99. joão ramos Author Editor

    this is probably one of the best jQuery techniques EVER!
    .-= joão ramos´s last blog ..tom waits revisited =-.

    August 24, 2009 · Reply

  100. Bryan Author Editor

    Amazing. I like it. Will surely use it.
    .-= Bryan´s last blog ..10 Tips for natural SEO =-.

    August 27, 2009 · Reply

  101. Claudia Author Editor

    Really interesting and useful!
    Thanks a lot, it’s a fantastic job =)

    August 28, 2009 · Reply

  102. GSD Author Editor

    Awesome! thanks!

    Quick question though, is there anyway to make the slider go up 100% and completely cover the background image?

    Thanks a lot for the help.

    August 28, 2009 · Reply

  103. hasfa Author Editor

    Hi guys. I like ur scripts. It’s nice and wonderfull. I must show ur web at my group. Good work. Thanks

    August 30, 2009 · Reply

  104. gavin Steele Author Editor

    This is great, I would love a tutorial on how to implement this with WordPress – Like how to get the post title into the text area OR get an image from a post into the box.

    Great tutorial

    August 31, 2009 · Reply

  105. Perdro Author Editor

    Hi everybody,
    This job is very good and i’m modifying it for a little website.

    I found a BIG problem in the demo. If user want to use key tab (for focusing), a layout’s bug occurs. the cover element is always up and if mouseover event occur, the effect is x2. I may be wrong but I think that it is not in the code (because it is only for the 1st and second that a problem is detected)

    For information, The problem is the same on other website like : http://www.tutorialmagazine.com/

    If anyone has an idea to debug…

    September 1, 2009 · Reply

  106. Lee Wilson Author Editor

    Is there a solution for users with Javascript disabled, perhaps making the whole image clickable, this would mean that read more text wouldn’t be displayed (since the whole image will be the read more), but it would mean that if JS is disabled, the user can still get to the page it is promoting.

    September 3, 2009 · Reply

  107. DeveloperNetwork Author Editor

    Nice article.
    Look at the second column of my site homepage. There is a slider.My Site HomePage

    September 3, 2009 · Reply

  108. Howard Author Editor

    You are the man!!!

    September 5, 2009 · Reply

  109. web Author Editor

    This is a truly wonderful script

    September 8, 2009 · Reply

  110. 1.april Author Editor

    thanks guys :)

    September 10, 2009 · Reply

  111. Martin Author Editor

    This is very nice – any idea how I can create a scroller with 5 or 6 images?

    Similar to this:

    http://www.dreamcss.com/2009/04/create-beautiful-jquery-sliders.html

    September 14, 2009 · Reply

  112. PSD to HTML Author Editor

    I had to come back and thank you for this. This was exactly what I was looking for and it fit right into a project I was working on.

    Great work and greatly appreciated
    .-= PSD to HTML´s last blog ..WordPress plugins folder – OSNN Forum =-.

    September 15, 2009 · Reply

  113. Perdro Author Editor

    Thank you for your help Lee Wilson

    September 17, 2009 · Reply

  114. Rod Christiansen Author Editor

    Exactly what I was looking for !!!
    Thanks

    September 24, 2009 · Reply

  115. kiuz Author Editor

    Nice work!… can I translete in Italian language and Post on my New Drupal Blog? of course i add the trackback on this.
    .-= kiuz´s last blog ..Eliminare Account, Windows Live Vs Facebook =-.

    September 24, 2009 · Reply

  116. Anil Reddy Author Editor

    Awesome script..this is what i was looking for, thank you very much

    September 26, 2009 · Reply

  117. Mike Author Editor

    Nice work on this script!

    I’ve integrated it into the WordPress native gallery (working on a plugin), but I’m having a weird issue with the the caption being active on page-load. Once you hover over the image, the script works fine, but I’m not sure why it auto loads as active.

    Anyone else have this issue?

    September 27, 2009 · Reply

  118. Mike Author Editor

    Nevermind. I noticed someone above had the problem.

    In the script, the .boxcaption top values don’t have “px” in them, which throws things off. Adjust those and you’re fine.

    Thanks again!

    September 27, 2009 · Reply

  119. Lee Wilson Author Editor

    Is there a way to overlay the image, let use the Kamil Smala image as an example, so there is an overlay of say 30% black, then when the user hovers it is removed, i.e. it comes into focus.

    Thanks

    September 28, 2009 · Reply

  120. Egypt Freelancer and web design in egypt Author Editor

    coooooooooool thanks

    September 29, 2009 · Reply

  121. Stefan Gustafsson Author Editor

    Thanks a lot for these, it will come in handy for sure :)

    October 1, 2009 · Reply

  122. Anthony Author Editor

    Hi Guys,

    I got one problem that i cannot seem to fix. Everything is working great in FF and Safari, but IE is giving me a hard time (big surprise)

    I am using a jQuery slider to slide threw some Featured images in an unordered list. Only one image is displayed at a time until you click on the next/prev button to slide in the next image. Hovering over the image will display the box caption, everything works great.

    However in IE, all the images in the unordered list are displayed when the page loads. The box caption does work, but it throws my slider out of whack. Removing the box caption script makes the slider work perfectly again.

    Any suggestions on how to solve the issue?

    p.s. I have added “px” to any numeric values :)

    October 2, 2009 · Reply

  123. jdiz Author Editor

    is it just me, or does the demo for this not work at all in Safari 4.0.3 or FF 3.5.3 on os x 10.6.1??

    October 3, 2009 · Reply

  124. jdiz Author Editor

    ok, so i checked this on a different machine and it works now? very strange.

    October 3, 2009 · Reply

  125. Adam Author Editor

    @Sam & @Cookie
    Regarding the opacity problem i.e. the text is semi-transparent as well as the box, there is a simple fix for this.

    In the .boxcaption css rule, remove the opacity property and add background: rgba(0,0,0,.8); just below the existing background property. This won’t work in every browser but will solve the problem in Safari and Firefox at least.

    The opacity property sets every child element to be of the same opacity, whereas rgba allows just the specified opacity for that element. Hope this helps!
    .-= Adam´s last blog ..My Trip to Paris – Part 3 =-.

    October 4, 2009 · Reply

  126. Justin White Author Editor

    I love this! I’m only having one problem. When i test the page, in FF, and IE7/8 the cover is always at the top, and active… when i roll over it works normally, then disappears like it should. How do i get rid of the active state on page load? thanks in advance.

    October 10, 2009 · Reply

  127. Justin White Author Editor

    p.s Im using dreamweaver so DOCTYPE is already present at the top of the doc.

    October 10, 2009 · Reply

  128. Justin White Author Editor

    Example…
    http://img7.imageshack.us/img7/2760/exampleissue1.png

    thanks to image shack.

    October 10, 2009 · Reply

  129. Jason Author Editor

    can’t get this to work with lightbox. any help?

    October 14, 2009 · Reply

  130. Jason Author Editor

    to my above comment, nevermind.
    i used slimbox 2 and that solved everything.
    man this is gonna make my site so sick.
    thanks guys!

    October 14, 2009 · Reply

  131. Ryan Author Editor

    how would i get the Full Caption Sliding example to work if the height is not known or non constant?

    October 14, 2009 · Reply

  132. Justin White Author Editor

    still nothing. I’ve tinkered with the code and nothing seems to work. it still starts at the top on load and does disappear until i hover, and roll out. if anyone knows how to fix this, I can supply example html/code

    October 16, 2009 · Reply

  133. Justin White Author Editor

    ok..its official… patience is a virtue. read some of the above comments and that fixed it. so lazy of me

    October 16, 2009 · Reply

  134. jacob Author Editor

    Brilliant. Super easy..though unable to fix the active state issue that has come up.

    I have added “px” to every place possible and added the DOCTYPE.
    Here is what I am using in the css

    .boxgrid{
    width: 88px;
    height: 71px;
    margin-left: 488px;
    margin-top: 245px;
    float:left;
    background: #9DCB3B;
    border: solid 0px;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    }
    .boxgrid img{
    position: absolute;
    top: 0px;
    left: 0px;
    border: 0px;
    }

    and the demo as it is:
    http://greenfootprintdesign.com/vcards/test

    Man I´d really appreciate any help I could get.. Hours have dwindled away trying to figure this out.

    October 16, 2009 · Reply

  135. Pinata Author Editor

    Hey,
    thanks so much for the tute, its very easy to follow and works great!
    However, I was wondering if its possible to center the elements on the page.. ive tried padding on the left to get it in the center (as the images are in a container), but the mouseover is in effect over the padding as well.. A faux ‘spacing’ div can be used, but is there any other way?
    Cheers, Alex.

    October 19, 2009 · Reply

  136. Jacob Thompson Author Editor

    Has anybody used the “boxgrid peek” feature and been able to fix the active state issue that has come up? I read every single comment on here and added px to every possible numeric entry..
    Posted my css info in a comment or so above..would appreciate if anybody can help me figure out what i´m doing wrong?
    thanks thanks

    October 20, 2009 · Reply

  137. Egypt web design Author Editor

    Thanks for the amazing trick i love it :)

    October 23, 2009 · Reply

  138. Jonathan Author Editor

    Has anybody successfully implemented this for wordpress? Because i have tried and no matter what I do it messes up the alignment of my webpage?

    Please help?

    October 27, 2009 · Reply

  139. chiangmai guide and tour Author Editor

    great tips And script, thankyou.
    .-= chiangmai guide and tour´s last blog ..Mandarin Oriental Dhara Dhevi ChiangMai Hotel =-.

    October 29, 2009 · Reply

  140. Noah Shrader Author Editor

    These are absolutely the coolest things. I used them for my portoflio page: http://www.webdesignersknoxville.com/portfolio.

    November 6, 2009 · Reply

  141. Noah Shrader Author Editor

    oops…http://www.webdesignersknoxville.com/portfolio

    November 6, 2009 · Reply

  142. egypt web design Author Editor

    thanks for this nice script.

    November 8, 2009 · Reply

  143. web design egypt Author Editor

    awesome
    that’s great post
    thanks

    November 8, 2009 · Reply

  144. chezza Author Editor

    I love the functionality of this, but I’m struggling to get it working in Joomla.

    I get the following javascript error:
    $ is not defined
    [Break on this error] $(document).ready(function(){\r\n

    Not sure how to fix it, so any help very much appreciated.

    Just starting out with javascript so maybe this is something very straightforward.

    November 9, 2009 · Reply

  145. chezza Author Editor

    found out what the problem was and it was a conflict with the mootools.js library (which is loaded by default with joomla). Disabling this fixed the problem.

    November 9, 2009 · Reply

  146. Chris Author Editor

    Is there a plugin for this for WordPress?
    I don’t know how to integrate it manually within a theme.

    November 10, 2009 · Reply

  147. tuna Author Editor

    verry impressive..
    .-= tuna´s last blog ..Photoshop’ta Hoş Bir Girdap Yapımı =-.

    November 10, 2009 · Reply

  148. omni osi Author Editor

    I’m having trouble having 2 boxgrid windows of different sizes work with sliding captions in my page. The second size caption isn’t visible initially but will appear and work correctly on rollover.

    What is the correct way to code various sized Container Windows in one HTML page?

    thanks for everything!

    November 15, 2009 · Reply

  149. Jamo Author Editor

    How can I strip out the JS and include it from the HTML file?

    November 18, 2009 · Reply

  150. Emeract Author Editor

    Just want to start by saying that I love this effect. Thanks for creating the tutorial.

    I’m having trouble getting a 2 column fixed layout to work correctly below the sliding boxes in Firefox v3.5.5. The code looks right in Safari (Mac).

    Here’s a link to the demo page. http://www.emeract.com/jm-web/index2.html Any ideas on how to fix the floats/positioning/whatever to make it cross-browser compatible?

    November 18, 2009 · Reply

  151. Emeract Author Editor

    By process of elimination, I found out that the opacity values under .boxcaption were breaking the layout. You were right about it being a rough topic!

    November 19, 2009 · Reply

  152. katoratz Author Editor

    I really appreciate you sharing this!

    I read through all of the comments so far and noticed that a couple of people have the same issue as I am having. I load my gallery into my main page with a separate jquery script and it seems to disable/conflict this effect. I can’t seem to figure this out for the life of me.. anyone have a fix?

    thnx in advanced :)
    http://tmwebstudios.com/internetstudio/web-design.html

    November 25, 2009 · Reply

  153. Chimera Studios web design Author Editor

    Very cool stuff indeed!

    December 5, 2009 · Reply

  154. Matthew Author Editor

    Practical and useful. This blog could benefit from reply links, several others asked questions about the plugin.

    December 6, 2009 · Reply

  155. SDK Author Editor

    Hi brilliant script..

    I need to use more than one instance of the script on the same page.

    How do i go about doing that?

    thanks!

    December 8, 2009 · Reply

  156. daddycool Author Editor

    Nice jquery thanks for sharing

    December 8, 2009 · Reply

  157. Amin Esmailzadeh Author Editor

    Nice Job. Your Job is A Big feat.and your is marvelous.with the best regards for you good luck .

    December 14, 2009 · Reply

  158. Bora Author Editor

    I use flash galleries http://flash-gallery.com. Easy to install and modify. Flexible appearance settings

    December 21, 2009 · Reply

  159. Mike Author Editor

    Great job, i will be sure to use this for my next project.

    December 23, 2009 · Reply

  160. John Author Editor

    Impressive, i always love javascript over flash for this great reason

    December 23, 2009 · Reply

  161. Abhisek @ AbhiTech Author Editor

    Excellent! Bookmarked!

    January 2, 2010 · Reply

  162. Graham Author Editor

    I was having trouble with the caption loading in the visible position as well.After adding the unit type after the positioning it helped but didn’t fix it completely I had to make sure my positioning in the CSS was the same as the positioning for the idle state in the Javascript. Hope this helps some people

    January 10, 2010 · Reply

  163. trey Author Editor

    For some reason when I use the Vertical Sliding boxes, I go to the page I’m using them and while the page loads and before you hover over it, it looks like this

    http://i50.tinypic.com/21m6xkh.jpg

    but after you hover over it and the page is fully loaded it comes to look like this.

    http://i48.tinypic.com/s145mc.jpg

    And thats how it’s suppose to look from the beginning but for some reason it locks up top until you hover over it and it will slide to the bottom. Anyone know what I’m doing wrong?

    January 13, 2010 · Reply

  164. pakistani designer Author Editor

    this is really nice thanks :)

    January 13, 2010 · Reply

  165. Peter Yee Author Editor

    not working in html5 doctype…

    January 14, 2010 · Reply

  166. anadikt Author Editor

    thanks for this slideshow plugin

    January 15, 2010 · Reply

  167. PUA Author Editor

    Hey, great script I’m going to implement this on my website because I like the visual appeal ( http://www.puahub.com ) hopefully it will help increase my readership. thanks

    January 15, 2010 · Reply

  168. andremoda Author Editor

    What a cool Tutorial, good Stuff. Many Thx.

    January 21, 2010 · Reply

  169. Simon B Author Editor

    This may have been up here for a long time, but this is an absolute classic.
    Thanks Sam and Zach,
    Simon

    January 25, 2010 · Reply

  170. JC Author Editor

    Hi, great stuff here, works great.
    However, I have a problem, probably because I’m a noob.
    I can’t get the thing to be centered onto the page. I tried the “div container” css trick, but it does not work at all. Can anyone tell me how to center the html so the content would sit center in the browser? Thanks.

    January 28, 2010 · Reply

  171. JC Author Editor

    ah, found the answer, turns out my markups were off. Anyways, great script!

    January 28, 2010 · Reply

  172. Nocleg Author Editor

    hanks for this slideshow plugin

    February 4, 2010 · Reply

  173. Corey Author Editor

    JC – how did you wind up doing it? I had tried getting this to center on the page before, too, but never had any luck.

    February 5, 2010 · Reply

  174. Corey Author Editor

    Okay, so I’ve figured out how to get the images center in a DIV… but I can’t get more than one image in a row. Rather than displaying three or four across, it just piles them on top of one another down the page. I’m not really sure where to go from here. Has anyone else run into this problem?

    February 6, 2010 · Reply

  175. Xdj Author Editor

    Is there a way to have the animation slide be automatic rather than, mouseover. Maybe have it slide up for 10 seconds and then down for 15, then repeat, thanks!

    February 7, 2010 · Reply

  176. David Author Editor

    Hi, I have had an issue with it placed inside of a couple of DIVs.

    When the page is loaded/refreshed, the caption starts at the top of .boxgrid instead of hidden below (like the boxcaptionfull transition)

    is there something i should be aware of? Any help or advice would be great.

    Cheers!

    David

    February 8, 2010 · Reply

  177. Neto Author Editor

    Very well!

    Amazing galery, congratilations!!!

    February 11, 2010 · Reply

  178. Craig Author Editor

    How would I add delay to the effect? i.e. have a 2 second delay before the text/etc. slides out?

    February 14, 2010 · Reply

  179. daniel Author Editor

    Hi!
    I did not go trough all discussion if there is a coment about conflict with this js and some other js like for example jquery.droppy.js menu wich Im getting when I import this js.. is that right or am I doing something wrong? thanks!

    February 21, 2010 · Reply

  180. Daniel Nelson Author Editor

    Hi

    I too have an issue with the JS not loading properly, but I am guessing it is conflicting with another JS that is loading.

    I have managed to get the script working perfectly here:
    http://www.johnstrand-mk.co.uk.server64.ukservers.net/boxes/

    But, once placed in the CMS it no longer works: http://www.johnstrand-mk.co.uk.server64.ukservers.net/

    I would really love to get a solution for this because I would rather not use a rollover state which is time-consuming and restrictive.

    Thanks in advance and, by the way, lovely script and nice looking website.

    Daniel

    February 28, 2010 · Reply

  181. Daniel Nelson Author Editor

    Okay, after a quick look around, I have discovered that the mootools.js script that loads for my AjaxSearch in MODx is causing issues. I need this to load for the search to work properly, so do you have any ideas what I might be able to do?

    February 28, 2010 · Reply

  182. Joey Author Editor

    1. .captionfull .boxcaption {
    2. top: 260;
    3. left: 0;
    4. }
    5. .caption .boxcaption {
    6. top: 220;
    7. left: 0;
    8. }

    for whom those use Doc Type, it needs to add “px”, something like top: 220px instead top: 220;

    please fix that in your demo

    btw, good coding, cheers

    March 7, 2010 · Reply

  183. George Dean Author Editor

    Question. I try to replace an image (the exact same size) and the new image won’t load. Its 325X260.

    So, then I take one of the existing images and duplicate it and rename it.. example “nonsense.jpg” to “nonsense2.jpg” and the “nonsense2.jpg” won’t load…

    Any clue what I am doing wrong??

    George

    March 9, 2010 · Reply

  184. George Dean Author Editor

    Follow up… when I copy and paste the “nonsense.jpg” and rename it to “nonsense2.jpg”, it works BUT when I load “nonsense.jpg” in photoshop and then save it as “nonsense2.jpg” it won’t load when I run the index.php file.

    That is soo weird to me… I use photoshop everyday for web publication.

    I can’t figure it out.

    George

    March 9, 2010 · Reply

  185. George Dean Author Editor

    Update II:

    Weird.. it works in firefox but not IE…. BUT, your jpgs load in the IE!

    George

    March 9, 2010 · Reply

  186. Patrick Author Editor

    Good tutorial.

    Any ideas on how to get this to work with Json and flickr script..? So that you can load in images onto your site and then the captions can slide open to show them.

    March 9, 2010 · Reply

  187. Xcellence IT Author Editor

    Thanks for this great tutorial.. I was looking for something similar to this…

    Thanks

    Regards
    xcellence IT

    March 10, 2010 · Reply

  188. Wilder Author Editor

    I love this effect but want to resize it to say 196px wide, I’ve tried it with an image this size and resizing the values but no joy! any suggestions?

    March 11, 2010 · Reply

  189. dave r Author Editor

    I’m having a problem getting this to work at all in IE6 (ever other browser is fine) have doctype xhtml 1.0 trans, px sufix on all values in css and js..i do note the demo does not work either, but jquery should work fine in IE6 no?

    March 15, 2010 · Reply

  190. Jono Childs Author Editor

    Hi I found:
    http://devsnippets.com/article/10-impressive-techniques-to-spice-up-your-wordpress-theme.html
    and This has really impressed me.. I just wish I knew how to code and do this kind of stuff!!!

    I’m making a website for (www.blender.org) blender user community in New Zealand and have been searching eagerly for gallery options… and this is exactly what I would like… if you are able to help me implement this into my wordpress site please let me know by email!
    I would be ever so grateful!!!
    Thanks so much
    Jono C

    March 21, 2010 · Reply

  191. Ralph Casafrancisco Author Editor

    For those that don’t want the text to be transparent.

    The opacity is being affected on the whole div therefore you cannot isolate the text to be opaque with the current code. But if you do what I did then you can, all you have to do is remove the transparency parameters and use a semi-transparent png as the background of the div.cover

    March 22, 2010 · Reply

  192. Amatatomba Author Editor

    I modified this to fit the image I want to use, but now there’s a big gap because the caption goes up too far. I’ve tried changing everything I can think of. How can I make it so the caption doesn’t go so far up now that I’ve made the caption smaller height wise?

    March 23, 2010 · Reply

  193. Craigg Author Editor

    Are you for real? What kind of code is this supposed to be with the href within the href? Must be some kind of malicious string output, ain’t it? Such a beautyful example and then this :)

    <a href="http://www.nonsensesociety.com/2009/03/art-by-jarek-kubicki/” href=”http://www.nonsensesociety.com/2009/03/art-by-jarek-kubicki/” rel=”nofollow”>http://www.nonsensesociety.com/2009/03/art-by-jarek-kubicki/” target=”_BLANK”>More Work

    March 23, 2010 · Reply

    • Zach Dunn Author Editor

      @Craigg

      I can’t find anything in the demonstration’s code that looks like what you’ve posted. How is that coming up for you?

      March 23, 2010 · Reply

  194. Sam Dunn Author Editor

    @Amatatomba
    You will want to adjust the top: values in the box .caption hover jquery area. That will affect the positioning upon hover. If you’re struggling with initial positioning, you’ll want to adjust the .caption class CSS.

    @Craigg
    Wordpress keeps plugging that in, I can’t for the life of me figure out how to remove it.

    March 23, 2010 · Reply

  195. Enfermin Author Editor

    hola alguien me pude decir como se llama la fuente que usaste para el texto de esta imagen: http://s3.amazonaws.com/buildinternet/images/sliding-boxes/slidebreakdown.jpg ?? como se llama la fuente

    emmm in english :D what is name of image font?? http://s3.amazonaws.com/buildinternet/images/sliding-boxes/slidebreakdown.jpg plz

    pd: sorry for my english xD

    March 24, 2010 · Reply

  196. MiniMe Author Editor

    Hey, guys. Nice work.

    Just one problem – how to make this thing work if images are not same width or height every time? For example 200×300 + 300×400 + 150×200 images in one post. Boxed styling crops them, and this is very wrong…

    Thanks for help!

    March 24, 2010 · Reply

  197. Nick Author Editor

    I like your effects, but they didn’t quite work write in shopping script I’m working on. I traced the problem to the doctype the shopping script uses:

    Do you know where the conflict is with your script?

    March 27, 2010 · Reply

  198. Nick Author Editor

    The doctype didn’t display. I’ll try again:

    DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”

    March 27, 2010 · Reply

  199. Nick Author Editor

    If you want to see what the problem is, try declaring a doctype at the top of the index file in your download. The first 2 pictures will start with hiden sliding element already showing at the top of the image. After one rollover, it reverts to the correct position. I just can’t figure out how to fix this.

    March 28, 2010 · Reply

  200. Nick Author Editor

    Well, that’s embarrassing. It was answered in the posts above. Thanks Joey.

    March 29, 2010 · Reply

  201. Dmitry Author Editor

    Hey, thanks for a nice tutorial :) I have a question here:

    Is there any way how I can slide DIV’s with this script, instead of images? :)

    Thank you.

    April 7, 2010 · Reply

  202. Anurag Author Editor

    good jquery i like that one. It is smooth and easy to use

    April 8, 2010 · Reply

  203. guesteroono Author Editor

    Would someone mind explaining the fix to the slidingboxes issue with Lightbox, jquery lightbox, slimbox… none of them are working and I don’t have any other scripts on the page.
    I don’t mind what lightslimquerybox it is just so long as both can live in harmony on the same page.

    I’m the 5th person asking now…. please nice community

    April 17, 2010 · Reply

  204. Sinden Author Editor

    Greetings all!

    I’m having some trouble displaying the slideshow in IE and I haven’t got a clue how to rectify it. Could someone cast an eye over it and give me some pointers…

    It displays fine in ff, chrome, safari and opera.

    http://www.alexsinden.co.uk/home

    Any help would be greatly appreciated as I’m a rookie with this stuff.

    Thanks
    Sinden

    April 17, 2010 · Reply

  205. Sinden Author Editor

    Ignore my last post sorry, forgot I went with a different slideshow in the end.

    cheers anyway

    April 17, 2010 · Reply

  206. steve Author Editor

    first off thanks for the tutorial, it’s really great!

    i ran into some strange issue though. I’m combining this and the colorBox jquery plugin (similar to lightbox) which seems to cause some kind of conflict. The captions work fine, but my captions have the colorbox links so they can see a full size image. So if they click the link the image pops up fine, but when you close that image it causes the thumbnail img and caption to change it’s y position 50 pixels or so.

    Anyone have any clue what’s causing this or how I go about fixing it?

    April 23, 2010 · Reply

  207. steve Author Editor

    nevermind, i figured it out… it was unrelated to this tutorial

    April 24, 2010 · Reply

  208. Lukasz Author Editor

    found a small bug in your css:

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

    should be:

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

    you have to state px explicitly else it causes issues with some browsers. namely firefox is one I noticed it on.

    April 28, 2010 · Reply

  209. CMentality Author Editor

    Thanks Lukasz!
    The sliding panel started at the top, and stating pixels was a quick solution.

    May 2, 2010 · Reply

  210. MologokoStudios Author Editor

    Great one! Seems like a very easy to use. Will tell my friends!
    Thanks

    May 3, 2010 · Reply

  211. miky_furniture Author Editor

    Hi,

    I like very much this elegant effect, does anybody know how to use it in Joomla?, I spent a lot of time looking around for a plugin with same functionality but no results, I found a module which doesn’t help me enough. Any help will be much appreciated.

    Thanks,

    May 8, 2010 · Reply

  212. Beijing Web Design Author Editor

    I was looking for some effects to add to a photo gallery and this post was just what I needed! Very elegant code too.

    May 12, 2010 · Reply

  213. novationx Author Editor

    Hi hi , i tried the tutorial and it worked.
    I even renamed everything so it would have proper naming in my own website.

    So good job ! Thx.

    For others : If you use other imagessizes , then readjust the top, bottom,left, right , etc attributes and it will work like a charm.

    i use it here : http://www.novationx.be/portfolio.html

    Bye ;)

    May 15, 2010 · Reply

  214. Devin Walker Author Editor

    Thanks for this amazing jquery effect!

    May 18, 2010 · Reply

  215. Drupal Consulting Author Editor

    I just used this for my portfolio page and have received a lot of compliments. Has anybody used this jquery easing plugin?

    May 20, 2010 · Reply

  216. Sivaranjan Author Editor

    This is an incredible post. Its amazing to see what CSS3 can do , at the same time its sad a lot of customers still want IE support which sucks at CSS3 big time.

    I am taking the liberty of adding this article to my CSS aggregator site. Hope you dont mind. :)

    May 30, 2010 · Reply

  217. Nauman Akhtar Author Editor

    This is so beautiful, all in one package :)

    June 6, 2010 · Reply

  218. Caitlyn Author Editor

    This is a great tutorial, but I have a question. I would like the image to pave padding, then a border. If possible, I would like the sliding box to only cover the image, and not the padding, if that makes sense? Any ideas would be great!

    June 9, 2010 · Reply

  219. Caitlyn Author Editor

    update: I’ve got it working on all sides except the bottom, I changed the top and left values and the width percentage on the caption box. However, I can’t seem to figure out how to make the caption box have padding on the bottom…

    June 9, 2010 · Reply

  220. Evan Author Editor

    Just tried to use the sliding boxes. It works in frontpage but doesn’t work on the net when uploaded. Any ideas??

    June 13, 2010 · Reply

  221. M.JAmes Author Editor

    thanks it’s vrey good !!!!

    June 18, 2010 · Reply

  222. Kadir Author Editor

    Hey there.

    I am using this but I have also discovered a bug with Opera.
    http://in-ess.net/photography/
    If you load up this site it will give you some free space at the bottom. This free space is caused by the black bars that are going up and down. Any clue how to fix it ?

    Thanks !

    June 20, 2010 · Reply

  223. Ibrahim Author Editor

    Cool, thank you for sharing.

    June 27, 2010 · Reply

  224. Virtulian Author Editor

    Thanks for that really a good asset for the developers.

    Thank again

    June 30, 2010 · Reply

  225. gabriel bell Author Editor

    Hi there, greetings from Argentina and thank you for sharing this sliding boxes.
    This jquery plugin doesn’t work in IE8 with XP.
    I had tried in different computers but still the same.
    Any suggestion?
    Thanks in advance.

    June 30, 2010 · Reply

  226. Marc Author Editor

    Hi – I’m having issues with IE8 too, every other browser works fine but in IE8 the “animation” is very jumpy and not smooth compared to other browsers.

    Anyone know how to resolve this?

    Thanks.

    July 15, 2010 · Reply

  227. Linda Author Editor

    How do I add a video in the box instead of the image?
    Thanks.

    July 18, 2010 · Reply

  228. Marc Author Editor

    If anyone else was having the same problem as me, you can fix it by adding:

    to your head, which I presume just makes IE8 mimic what IE7 would do?

    July 20, 2010 · Reply

  229. Marc Author Editor

    EDIT: Wouldnt let me post code so go to this page for the code required :)

    http://stackoverflow.com/questions/879137/problem-with-jquery-in-internet-explorer-8

    July 20, 2010 · Reply

  230. Jamie Author Editor

    Hi loving the script but I am trying to get it working where you hover over another div inside the main box and that would make it slide, instead of the whole box

    Example here http://www.jamiecotton.co.uk/slide/

    Any one got any ideas?

    July 22, 2010 · Reply

  231. Web design portfolio Author Editor

    this is the best thing i’ve seen today!

    July 23, 2010 · Reply

  232. Hurst Vanrooj Author Editor

    @rohnn thanks for the solver. putting in px solved the issue – Sam and Zach thanks for the code. It would be better just to add the px on the download code. BTW I didn’t think you were twins, I thought it was a photo gimmick – and you were one person! “Sam” does the code with his flat hair, “Zach” designs the site with his high hair! Cheers guys.

    July 23, 2010 · Reply

  233. Singapore Web Design Author Editor

    Great resource. I already used it for some of my clients and it is awesome. Thanks alot

    July 29, 2010 · Reply

  234. Honey Author Editor

    Hi there! I have a little probleme with this script. I try to combine your showcase with another jquery plugin and I can’t make it works.

    Here is the code:

    $(document).ready(function() {
    //Slideshow js

    $(‘div#portfolio div.slide’).cycle({
    fx: ‘fade’,
    pager: ‘div#portfolio div.controls div.inner’,
    pagerAnchorBuilder: function(idx, slide) {
    myClass = (idx==0)?’ class=”activeSlide”‘:”;
    return ‘ ‘;
    }
    });

    //To switch directions up/down and left/right just place a “-” in front of the top/left attribute
    //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});
    });
    });

    The problem is the first script runs without problems, but yours not. Can you please give me some advice?! Thanks!

    August 3, 2010 · Reply

  235. Flint & Tinder Author Editor

    Thanks for the tutorial and thanks to Rohnn for the hover state fix.

    It shall be up on my portfolio soon!

    August 3, 2010 · Reply

  236. Web design portfolio Author Editor

    this is a great tutorial, once I got it working ;)

    August 11, 2010 · Reply

  237. Hagerstown Author Editor

    I’m trying to use your script but it’s conflicting with another script on the same page. Here’s the link to the script it’s conflicting with: http://devthought.com/blog/projects-news/2008/06/barackslideshow-an-elegant-lightweight-slideshow-script/.

    On your jQuery script, if I comment out the jquery-1.3.1.js, the other script works fine.

    Any suggestions would be greatly appreciated.

    Thanks in advance!

    August 13, 2010 · Reply

  238. Bill G Author Editor

    Hey! This is a great effect.. it may be a slightly off-topic, but I’m having an issue with actually position the whole sha-bang on my page..

    everything is working like a charm but I can’t seem to move the entire box to a desired location using CSS.. have tried wrapping them into another container and positioning that, using a style to position it, and changing the CSS for the actual .boxgrid and .boxgrid img – all with mixed results.. they either all line up in a row at the top, or they stack up on top of each other in the top left corner..

    Any Ideas? I’m using the similar wrapper technique on a different page with some differnt content and it works well.. is there something in the Java Script that is preventing me from positioning these?

    test page is here..
    http://www.makecoolshitanddie.com/music4.php

    thanks for any help, much appreciated..
    B

    August 14, 2010 · Reply

  239. Bill G Author Editor

    whoops.. some coded items dissapeard..

    meant to say..

    have tried wrapping them into another (div) container and positioning that, using a (span) style to position it, and changing the CSS for the actual .boxgrid and .boxgrid img – all with mixed results.. they either all line up in a row at the top, or they stack up on top of each other in the top left corner..

    August 14, 2010 · Reply

  240. Bill G Author Editor

    Oh snap.. I got it working! I must have been doing something wrong intially becuase I did get the container DIV to work.. only using an inline SPAN style and not a reference to a CSS class or ID.. thanks any way Y’alls!

    Again. .Great tutorial and effect.. thank you for sharing

    August 14, 2010 · Reply

  241. design21th Author Editor

    Very Nice.. THX form Bosnia!

    August 16, 2010 · Reply

  242. java Code Author Editor

    Thank you for this interesting topic

    August 17, 2010 · Reply

  243. Jeremie Author Editor

    Hi, this is a great tutorial. Is it possible to have the rollover occur only when you mouse over the preview content. I’m using the second example, but I don’t want the content to pop up when I mouse over the image, I want it to animate when my mouse rolls over the “Kamil Smala.” Make sense? Thanks in advance!

    August 21, 2010 · Reply

  244. Sam Harrison Author Editor

    Ok my issue is I have a fantastic portfolio in the works using techniques that aren’t used very often I’m using 2 of your Jquery scripts Supersized and these Sliding boxes. I need these Sliding Boxes to work in Liquid % terms of measurement I want my portfolio to resize according to screen resolution. I tried changing the things and it ends up looking FANTASTIC on bigger screen resolutions

    August 22, 2010 · Reply

  245. Sam Author Editor

    Opps looks like I had one thought in mind and quickly ran into another so thats why end didn’t make sense ok. I got my Liquid Width Working my Liquid Height makes them collapse. also good news I made script more intuitive to work with I think well it is on my side change your Jquery to.

    // JavaScript Document
    $(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:’100%’},{queue:false,duration:300});
    }, function() {
    $(“.cover”, this).stop().animate({top:’0%’},{queue:false,duration:300});
    });
    //Horizontal Sliding
    $(‘.boxgrid.slideright’).hover(function(){
    $(“.cover”, this).stop().animate({left:’100%’},{queue:false,duration:300});
    }, function() {
    $(“.cover”, this).stop().animate({left:’0%’},{queue:false,duration:300});
    });
    //Diagnal Sliding
    $(‘.boxgrid.thecombo’).hover(function(){
    $(“.cover”, this).stop().animate({top:’100%’, left:’100%’},{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:’40%’},{queue:false,duration:160});
    }, function() {
    $(“.cover”, this).stop().animate({top:’0%’},{queue:false,duration:160});
    });
    //Full Caption Sliding (Hidden to Visible)
    $(‘.boxgrid.captionfull’).hover(function(){
    $(“.cover”, this).stop().animate({top:’55%’},{queue:false,duration:160});
    }, function() {
    $(“.cover”, this).stop().animate({top:’100%’},{queue:false,duration:160});
    });
    //Caption Sliding (Partially Hidden to Visible)
    $(‘.boxgrid.caption’).hover(function(){
    $(“.cover”, this).stop().animate({top:’55%’},{queue:false,duration:160});
    }, function() {
    $(“.cover”, this).stop().animate({top:’83%’},{queue:false,duration:160});
    });
    });

    And Change the following CSS

    .captionfull .boxcaption {
    top: 100%;
    left: 0;
    }

    .caption .boxcaption {
    top: 83%;
    left: 0;
    }

    I have figured out the magic numbers for all sizes and measurements I hope :). would be greatly appreciated if someone can help me with height 30% on my divs.

    August 23, 2010 · Reply

  246. Devin Walker Author Editor

    Great tutorial and awesome demo, I’ve used this MANY times in my projects.

    August 23, 2010 · Reply

  247. shantanu Author Editor

    please help me to create a animation of fade in fade out, as i have multiple images and a transparent bg is on that image, on rollover i want to remove the transparent pattern bg and show the original image, please help me

    August 30, 2010 · Reply

  248. flyer templates Author Editor

    Thanks a ton for the tutorial.

    The explanations are describing every step. Great for newbies.

    August 30, 2010 · Reply

  249. Gm Author Editor

    i need some help, i use this example and work great. but i’m trying to use with ajax, in firefox works but ie 6 and 7 doesn’t.

    when i bring the content with ajax i bring again the script, was the only way i manage to make work, but doesn’t work on ie 6 and 7.

    anybody could help me?

    thanks

    September 1, 2010 · Reply

  250. ozgur Author Editor

    How to use in blogger?

    Thanks

    September 1, 2010 · Reply

  251. Gm Author Editor

    just passing to say that i fix the problem.

    wasn’t in the script, i was passing the css again with the ajax and that wasn’t work on ie.

    September 2, 2010 · Reply

  252. Stephen Author Editor

    hi
    I don’t know why the animation part isn’t working. Does anyone know why?

    http://www.fonda.co.uk/ParkhouseDev/News/Archive.html

    September 3, 2010 · Reply

  253. posicionamiento web Author Editor

    How would I add delay to the effect? i.e. have a 2 second delay before the text/etc. slides out?

    September 3, 2010 · Reply

  254. vainfotech Author Editor

    It is very Useful for me and i am also web developer in ahmedabad.

    September 7, 2010 · Reply

  255. naren Author Editor

    very nice……

    September 9, 2010 · Reply

  256. IT Consulting Author Editor

    this is very useful and appreciated , great tutorial

    September 15, 2010 · Reply

  257. Ed` Author Editor

    First of all nice tut!

    Q: I have thrown 3 slidingbox divs (300px + 10px margins) in a container (960px), but i am unable to show a background image in this container behind the slidingboxes.
    Are the margins to blame? And how to work around this?

    Cheers, Ed’

    September 15, 2010 · Reply

  258. Pixels Design Author Editor

    Awesome tutorial, thank you so much!

    September 15, 2010 · Reply

  259. Matt Matzen Author Editor

    @ED- Im still playing with the same problem. So far I have seem to only be having a problem with this with FF and not IE (strange I know). I will post if figure it out.

    September 16, 2010 · Reply

  260. Matt Matzen Author Editor

    @ ED- Ok after messing with this for the better part of the afternoon I got it to work. Basically I had to change the box grid POS to absolute instead of relative; and before your BOX DIV’s put in a div that has a H, W and POS of absolute and close it. Your going to have to mess with margins so that the box’s are in the right POS for you. Its not a very clean way of doing it but I have it working in IE7-8, FF and Safari.

    September 16, 2010 · Reply

  261. uui Author Editor

    thanks heaps .. the best slider ive ever seen and its sooo damn easy to install..

    September 19, 2010 · Reply

  262. emma Author Editor

    Hi, thanks for this – it’s so simple – I have integrated into a wordpress template without too much trouble.

    Just wondering – is there a way I can lock the fly up to the bottom of a div that has a variable height?

    I’ve got it working with a variable height, but it needs to be locked to the top – I would like the transparent caption that comes up to all be the same height.

    I can lock to the bottom with percentage values for height, but this means the captions aren’t the same height.

    September 19, 2010 · Reply

  263. chris Author Editor

    Big fan of this… However I’ve got a problem.

    I’ve tried implementing this into a sliding carousel that has a row of 4 images, and each image has a box slider. It works perfect until the carousel goes through it’s first loop as is back at the beginning again and the box slide animations just stop, and don’t appear to work.

    Is there any way of fixing this?

    Thanks in advance!

    September 20, 2010 · Reply

  264. chris Author Editor

    Following on from my previous comment, it was the fault of the carousel as expected – it was cloning the and/or images and somehow stopping the code from working once it’d gone through it’s first loop. I’ve tried a different jquery carousel and it’s working fine now.

    September 21, 2010 · Reply

  265. Devin Walker Author Editor

    Hey I really like this effect and have used it quiet a bit… my problem was that this code does not include jQuery Easing. With a subtle ease the effect looks even more impressive. So check it out: http://www.wordimpressed.com/coding/jquery-sliding-boxes-and-captions-with-easing/ and enjoy.

    September 22, 2010 · Reply

  266. Massage Sydney Author Editor

    Cool! Good article! this is very useful and appreciated , great tutorial. The explanations are describing every step by step… Thanks for the great help..

    September 28, 2010 · Reply

  267. gtea Author Editor

    Excellent! Thank you!
    Used in http://interpolnyc.ru/albums.html

    September 28, 2010 · Reply

  268. Aaron Author Editor

    I am trying to use this concept on images of varying sizes and in different places within a web page, however I cant get more than one to work at a time… Anyone any ideas? Greatly appreciated!!

    September 28, 2010 · Reply

  269. Health Angels Author Editor

    Great tutorial! Really a good script you are using. thanks for putting together this nice tutorial. I think this is the best site for learning php… Thanks for a great help!

    October 4, 2010 · Reply

  270. mike i Author Editor

    Thanks for the code guys. I used this technique to create callouts for a clients website.

    I made a tutorial and download of my version of the sliding boxes and captions here: http://webdesignandsuch.com/featured/jquery-sliding-boxes-and-captions/

    October 5, 2010 · Reply

  271. Woodworking Machinery Author Editor

    It is informative blog.

    Thanks

    October 6, 2010 · Reply

  272. pixelodyssey Author Editor

    Hey there, great script, thanks for using.
    i use html5 and have a problem that tha captions at the start on the top appears. is there a workaround at the time? thanks

    October 7, 2010 · Reply

  273. pete gaskell Author Editor

    Anyone got a solution to make the image still clickable with a link. Obviously i can get the image to link but when the cover slides up it covers the link area.

    i’m reet flumoxed.

    October 10, 2010 · Reply

  274. pete gaskell Author Editor

    Anyone used this with hoverIntent. I’m not getting anything to delay.

    sorted the previous problem out with

    var block = $(“.boxgrid”);
    block.click(function(){
    window.location = $(this).find(“a:first”).attr(“href”)
    });
    block.addClass(“clickable”);
    block.hover(function(){
    window.status = $(this).find(“a:first”).attr(“href”)
    }, function(){
    window.status = “”
    })

    October 10, 2010 · Reply

  275. Joe Author Editor

    Any ideas on getting this to work in WordPress?

    http://fjchapman.com/writing/?p=122

    Here’s an incredibly rough post I set up just to test. The caption starts locked 25px from the top and resumes normal operation as soon as you mouse-over.

    Let me know if I can help.

    October 12, 2010 · Reply

  276. Carlos Almeida Author Editor

    Nice one, implemented in Portuguese Navy Site:

    http://www.marinha.pt/PT/noticiaseagenda/revistadaarmada/Pages/ra_arquivo.aspx

    October 15, 2010 · Reply

  277. james Author Editor

    For everybody trying to intergrate this fantastic script into wordpress….

    Vital! – The snippets of jQuery code you’ll find while out and about on the net make extensive use of the shortcut $ to express the jQuery global object. This isn’t going to work in WordPress, so at all times we use jQuery(document).ready(function($) – and then it will work… Once inside the function, we can use $ as a shortcut

    see: http://themocracy.com/2009/04/using-jquery-with-wordpress/ for the full details

    October 15, 2010 · Reply

  278. Rubens Author Editor

    It seems to work nicely for wordpress to me!
    I juts integrated to a design and no problem with the animations or the positioning.
    The only detail I found is that the boxes seems to have the hover function active when the page loads. I can see the captions until I mouse over them and the animation starts. (I am mostly using Full Caption Sliding effect). Any clue about how to solve this?

    October 18, 2010 · Reply

  279. alex Author Editor

    Hello

    nice work

    I had problem! I want to change size of each box
    I added a new boxgrid it called boxgrid2 and changed name of “function” but effects doesnt work!

    can u guide me?

    October 19, 2010 · Reply

  280. Rubens Author Editor

    Alex to change the size of each box you should do it in the css and then in the javascript (“function”) if necessary..

    October 19, 2010 · Reply

  281. alex Author Editor

    @Rubens

    I’ll explain my way

    I added a boxgrid that it called boxgrid2 with this information
    .boxgrid2{
    width: 640px;
    height: 480px;
    margin:10px;
    float:left;
    background:#161613;
    border: solid 2px #8399AF;
    overflow: hidden;
    position: relative;
    }

    then I changed name of the function to
    $(‘.boxgrid2.caption’).hover(function(){

    but effects doesnt work :(

    October 20, 2010 · Reply

  282. thinayr Author Editor

    I downloaded the zip file but all I see is an index.php file and the images… Am I missing something?

    October 24, 2010 · Reply

  283. thinayr Author Editor

    Ah. Nevermind.

    October 24, 2010 · Reply

  284. Rubens Author Editor

    Alex,
    it seems to be alright in your code.
    Just check if you keep the link to jquery and the top of the animation:
    1) the link to ‘http://jqueryjs.googlecode.com/files/jquery-1.3.1.js', and
    2) in the .js, the next line, where it says 160px… you must adapt to your new size:
    $(‘.boxgrid.caption’).hover(function(){
    $(“.cover”, this).stop().animate({top:’160px’},{queue:false,duration:160});
    }, function() {

    October 25, 2010 · Reply

  285. jl17 Author Editor

    Hi,
    Great work.
    Is there a way to combine these sliding boxes with a picture slider like http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding or http://net.tutsplus.com/articles/news/using-the-wonderful-jflow-plugin-screencast/

    I want to be able to slide multiple pictures horizontally and for each picture have its own descriptive text in a vertical sliding box.

    October 31, 2010 · Reply

  286. Anton @ Website Designers Author Editor

    Not bad of Idea, would be awesome to have that inside a JQuery slider.

    November 1, 2010 · Reply

  287. diegocrusius Author Editor

    Thank you so much for sharing this. Easy and pretty! :P

    November 1, 2010 · Reply

  288. Duncan Author Editor

    Great script, except it breaks as soon as I add a valid doctype to my page-file. It doesn’t seem to make a difference whether it’s a html4, transitional or strict. It leads to the captions appearing at the top of the boxgrids upon page load, and they only drop down to their required (ie, hidden) position when you first hover over them.

    November 1, 2010 · Reply

  289. Neil Author Editor

    Question:
    How can set the overlay box in the down position on first load? As of now, my page loads with the hover state up.

    Thank You.

    November 1, 2010 · Reply

  290. Xcellence-IT Author Editor

    @Rubens

    How to solve this? I’m having same problem.

    “….The only detail I found is that the boxes seems to have the hover function active when the page loads. I can see the captions until I mouse over them and the animation starts. (I am mostly using Full Caption Sliding effect). Any clue about how to solve this…”

    November 2, 2010 · Reply

  291. Neil Author Editor

    ah, I got it, I had the “top” property in the css set at 0px, and the JavaScript “top” also set at 0px. Once I changed the css to the proper height of my image it loaded correctly, with the hover box down.

    November 2, 2010 · Reply

  292. Lee Author Editor

    Great script, although, is there anyway to keep the transparency separate from the .boxcaption and the text within in i.e H1s, paras, achors etc? currently it applies the set opacity to text aswell as the box? I’ve applied opacitys to layers before and to insert text over a layer with opacity you need to have a layer over the opaque layer, this seems abit longwinded, anyways around this??

    Cheers

    Lee

    November 3, 2010 · Reply

  293. Webchemie Author Editor

    Cool effects, simple and clean. Thanks Sam.

    Greetings,

    Peter

    November 16, 2010 · Reply

  294. Dan-Gil Author Editor

    Really cool stuff! thanks

    Dan-Gil

    November 17, 2010 · Reply

  295. allo Author Editor

    Hi!
    I’ve a problem with this animation: it works with FF and IE, but don’t works with Chrome and Safari…

    Can you help me, please?

    November 18, 2010 · Reply

    • Max Author Editor

      Same Pb for me….any solution so far ??

      February 17, 2011 · Reply

      • Max Author Editor

        Got it !
        As Zack said, you have to use jQuery in noConflict mode.

        Put this after the Jquery loading :
        jQuery.noConflict();

        and replace all the “$” by “jQuery”

        example:
        $(document).ready(function(){ BECOMES jQuery(document).ready(function(){

        Now it works on Chrome and Safari : yes!

        February 17, 2011 ·

  296. Jayson Author Editor

    works fine for static pages, but my div, containing the images i want to use with boxgrid, is dynamically loaded with javascript and jquery. and the effect doesn’t work. basically i have a link on a page that when clicked, executes javascript, that using jquery’s load function to load content (in my case a php script that outputs images) into a div. In this div, I want the boxgrid effect for those images. but it doesn’t work. i tried adding boxgrid to main page’s document ready function, tried adding it to the page that gets load’ed into the div, tried adding it to the javascript function to execute right after the images page is loaded. but i’m stuck. anyone else got this working in a jquery-loaded div?

    November 22, 2010 · Reply

  297. sterg17 Author Editor

    this is interferring with my prototype.js

    anyone know how to make them play nice?

    November 28, 2010 · Reply

    • Zach Dunn Author Editor

      Run jQuery in noConflict() mode.

      November 29, 2010 · Reply

  298. Varun Author Editor

    That’s exactly what I was looking for thanks looks good.

    Do you have more such stuff … how about some video tuts

    Cheers!

    December 1, 2010 · Reply

  299. Raghib suleman Author Editor

    thanks for sharing… great post
    http://www.raghibsuleman.com/jquery-s3Slider-slideshow

    December 6, 2010 · Reply

  300. pgood Author Editor

    Thank you so much for sharing this. Easy and nice! :)

    December 6, 2010 · Reply

  301. emil maran Author Editor

    I’ve changed the animation FX on my website using ‘easeOutCubic’ from ‘* jQuery UI 1.8.1
    ‘ and the effect runs better (slower).

    $(‘.boxgrid.captionfull’).hover(function(){
    $(“.cover”, this).stop().animate({top:’80px’},800,’easeOutCubic’);
    }, function() {
    $(“.cover”, this).stop().animate({top:’160px’},800,’easeOutCubic’);
    });

    Thank You for this boxgrid FX :)

    December 8, 2010 · Reply

  302. MertCan Author Editor

    Alex to change the size of each box you should do it in the css and then in the javascript (“function”) if necessary..

    December 9, 2010 · Reply

  303. Alistair Chisholm Author Editor

    I have implemented something similar on my portfolio…

    http://vivid-ness.co.uk

    I think i’ll rewrite it though using jQuery due to this tut. Thank you.

    December 11, 2010 · Reply

  304. Fernand Author Editor

    Hi Sam and Zach (and everyone here),

    great tutorial – deffo have used it, so thanx!
    One problem however. For some reason, the DIV its placed in seems to ignore it in that the background colour of the DIV ends before it starts: here’s what I mean:
    http://fk-fj.com/test/motion.html – as you can see the DIV appears to end under the title ‘Previous Projects’. Tested in Safari 5, Firefox 3.6 and Chrome 8.
    The only way around it is if I change the DIV size in my CSS from auto/any given size to a size thats big enough, but I shouldnt have to need to change it from auto…

    Any tips/ideas?

    December 27, 2010 · Reply

  305. ฟังเพลง Author Editor

    thanks for sharing… great post
    :D

    December 28, 2010 · Reply

  306. Jarod Billingslea Author Editor

    thanks!! im going to definitely use this!! :D:D

    December 28, 2010 · Reply

  307. Spelen Author Editor

    Very impressive… Javascript is a much better solution then flash as you have proven again! I have added this to my favorites.

    January 7, 2011 · Reply

  308. Spelen Author Editor

    Very simple and cool effect, Great Job! Thanks for sharing Sam.

    January 9, 2011 · Reply

  309. Jan Author Editor

    Am trying to re create this with some tweaks, would like the cover to animate in the opposite way when the mouse hovers off, kind of like the way http://www.rokkan.com has done.

    I am not sure as to how I set/code the hover off comand, there is also an opacity fade, any help would be greatly appreciated.

    January 9, 2011 · Reply

  310. web design in ahmedabad Author Editor

    I love this script and it will be very useful for a website

    January 11, 2011 · Reply

  311. โปรโมทเซิฟ Author Editor

    thank love this script :D

    January 23, 2011 · Reply

  312. mib Author Editor

    Go Forth and Create

    January 24, 2011 · Reply

  313. Kevin Gallagher Author Editor

    Thanks for sharing, will have the sliding boxes up this weekend on http://www.jimjacobe.com/ once I have decided on the information which goes behind the main image. Thanks!!

    January 25, 2011 · Reply

  314. warawat Author Editor

    thank love this script.

    January 26, 2011 · Reply

  315. Greetje Author Editor

    Very nice! Thanks a lot!

    January 27, 2011 · Reply

  316. dennis Author Editor

    Fantastic work! I am completely new to html and css, and I’m runnin out of nails but I got it to work. Can I also fade in/out several images in the imagebox? Thanks!

    February 5, 2011 · Reply

  317. brian Author Editor

    new to this, so sorry if this is stupid, but instead of the slider revealing text, I would like it to reveal another image. can someone please help me figure this out. Thank you!

    February 9, 2011 · Reply

  318. seo china Author Editor

    great effect
    thumbs up

    February 10, 2011 · Reply

  319. wiyono Author Editor

    Perfect..
    Thank you so much for sharing…

    February 10, 2011 · Reply

  320. stephen Author Editor

    I don’t understand. I did everything you asked and it’s just not working. Are you sure you’re supposed to skip step 2 (if you require no transparency) at the point that you say?

    February 11, 2011 · Reply

  321. A.Jendrysik Author Editor

    Nice effects . thx for sharing this nice stuff.
    Greetings from DE

    February 13, 2011 · Reply

  322. martin Author Editor

    Love the captions, rare are the post that simple including captions CHERRRRS

    February 14, 2011 · Reply

  323. Alex Reid Author Editor

    Good coding.
    -Alex

    February 24, 2011 · Reply

  324. Todd Welling Author Editor

    This DOES NOT work with jQuery 1.4.4 (current WordPress standard). Works ok with 1.3.1 remote from Google within WP, but placing the below breaks all other jQuery on my site

    Any ideas?

    Cheers,
    Todd

    March 4, 2011 · Reply

  325. mk Author Editor

    Thanks for the tutorial!

    Is there any way to make the .caption appear at the bottom of the image on the initial load?

    March 5, 2011 · Reply

  326. mm Author Editor

    Hi thanks for the tutorial it really good!! i shall be sharing it!

    However PLEASE can someone help me. im really new to website design and would love to integrate this effect in my image gallery i am creating.

    But my images are 200px high by 285px wide and i have no idea how to re adjust the caption to make it scale down to fit these measurements.

    could anyone please help me?

    Thanks very much in advance.

    March 10, 2011 · Reply

  327. johnny Author Editor

    Script works great except when I add a little code to the end of the Image Source. It seems to drop my code after you start clicking the other buttons

    /Images/Projects/Tell-Us-Your-Story/Tell-Us-Your-Story.jpg?Action=thumbnail&Width=568&Height=356&algorithm=fill_proportional

    March 15, 2011 · Reply

  328. Jose Tapia Author Editor

    Thanks for share, very cool effect, I definelitty use for my site, congratulations for the plugin

    March 23, 2011 · Reply

  329. Jocy Author Editor

    Hi!
    I love this! I’ve been spending days trying to find a creative slide box just like this for my Photos page.

    I’m not very experienced with creating a CSS so I was hoping you could help me understand how I could create this for my wordpress website.

    Also, where do I find the JQuery to place in the header?

    Thank you for your time and help.

    March 23, 2011 · Reply

  330. Rayna Claycamp Author Editor

    Hi. I wanted to drop you a fast notice to express my thanks. Ive been following your weblog for a month or so and have picked up a ton of good information and loved the strategy youve structured your site. I am making an attempt to run my very personal blog nevertheless I think its too normal and I need to concentrate on a number of smaller topics. Being all issues to all folks is just not all that its cracked up to be

    March 28, 2011 · Reply

  331. Hunter Ruth Author Editor

    Hi. I have been playing around with your tutorial and I have ran into a problem.

    It seems whenever I first load the page, the caption appears, but at the top of my window. I am not sure which property changes this. I am using the “caption sliding” script. Thank you in advance. Great Tutorial.

    April 14, 2011 · Reply

  332. Teddy Author Editor

    job well done!! hands down! can i use one of those thumbnail effect on my portfolio http://www.craytif.com?

    April 15, 2011 · Reply

  333. Kiki Author Editor

    I’ve been trying to merge this plugin with galleryview from http://spaceforaname.com/galleryview to get this example:http://www.forbes.com/2011/03/30/porsche-toyota-bmw-mercedes-business-autos-best-liked-cars_slide_2.html.

    The result I wanted is an gallery that let you browse through the images and when you hover over the image, the captions pop up. Galleryview doesn’t have ‘pop-up’ captions and I couldn’t figure out how to make the mosaic plugin work inside the gallery….

    help?

    April 15, 2011 · Reply

  334. rapidshare Author Editor

    Very Good Effect .. but it`s a bit complicated ..

    April 15, 2011 · Reply

  335. Fabb Author Editor

    mmm…seems to have a problem with jQuery =>

    $ is not defined
    [Stopper sur une erreur] $(document).ready(function(){

    With firebug ;)

    April 21, 2011 · Reply

  336. homayun Author Editor

    how to centering boxes??? plz somebody help

    April 25, 2011 · Reply

  337. Personal Training Melbourne Author Editor

    Great tutorial! Thanks for showing the script you are using and putting it in an easy to understand tutorial. I think this is the best site for learning php… Thanks for a great help!

    April 28, 2011 · Reply

  338. Drew Author Editor

    Hi There
    Im still pretty new to webdesign and wondered if anybody would be up for doing a quick tutorial/walkthrough on how to implement this plugin within dreamweaver? Pretty Please :)

    April 30, 2011 · Reply

  339. İhlas Temizlik Robotu Author Editor

    Hi
    Thanks this article see you again ;)

    May 3, 2011 · Reply

  340. edie Author Editor

    Very nice, i’ll use to designing my site…

    May 3, 2011 · Reply

  341. CCNA CHENNAI Author Editor

    nowadays, mobile website Design is very useful to me, thanks your information. keep it up.

    May 5, 2011 · Reply

  342. รับทำเว็บไซต์ Author Editor

    Very inspirational work.

    May 7, 2011 · Reply

  343. derek Author Editor

    i love this effect. perdo made a comment a while ago about what happens when you us focus on the item with a keyboard tab, and i was wondering if anyone has found a solution for that problem. thanks!

    May 14, 2011 · Reply

  344. ivan Author Editor

    Firebug is showing this error

    $(“.boxgrid.slidedown”) is null
    [Interrumpir en este error] $(‘.boxgrid.slidedown’).hover(function(){

    What should I do to fix it?? the plug in is not working for me and I followed every step of the tutotorial.

    http://tepian.cl/category/riders/ this is de section of the site where I want to run the plug in

    Bye!!! and thanks the plug in looks awesome!!!.

    May 18, 2011 · Reply

  345. Kristin Author Editor

    I finally got this to work but need help: I have a transparent white background for the caption area with green type and noticed the green type is transparent also…is there a way to make the text solid and not adopt the transparency effect? Thanks!

    May 20, 2011 · Reply

  346. Devi Piper Author Editor

    I’ve set things up for partially hidden box caption. On Safari it works great. On XP-IE, everything starts out fully hidden, instead. Is there a work-around for XP-IE?

    May 23, 2011 · Reply

  347. Affordable Web Design Agency Author Editor

    Thanks for this slide show tutorial, was looking for something like this for a client’s website. This thread has actually turned out to be a great resource with so many links to several showcases. I appreciate the effort.

    Thanks

    May 27, 2011 · Reply

  348. robin Author Editor

    Really nice… thanks for that………

    June 14, 2011 · Reply

  349. Robin Author Editor

    Really nice…thanks for that

    June 14, 2011 · Reply

  350. Joe Author Editor

    Thank you! Thank you! Thank you! for the awesome tut!

    June 16, 2011 · Reply

  351. Cosmetic Surgery Author Editor

    Nice Post…. Thanks For sharing it

    June 17, 2011 · Reply

  352. fondotinta Author Editor

    good slider plugin thanks for sharing

    June 25, 2011 · Reply

  353. Spletodrom Author Editor

    Just found this after searching for jquery captions examples.
    Will try it out, thanks.

    June 27, 2011 · Reply

  354. generhayshunhex Author Editor

    Loving the coding. Quick getting it to work for me. One question though. If I wanted the information in the “.cover boxcaption” div to automatically load with the img every time it changed versus having the .hover effect, how would one go about implementing this? I was already able to implement this into a carousel effect. http://www.wcaeagles.org/FreeForm . And it works really nice. But this is beyond my jquery understanding when it comes to autoloading this div element.

    Anyone that can help would be much appreciated!

    June 28, 2011 · Reply

  355. Web Developement Author Editor

    Amazingly nice slider.

    July 3, 2011 · Reply

  356. yassein Author Editor

    reat script, except it breaks as soon as I add a valid doctype to my page-file.
    http://www.entercaps.com
    It doesn’t seem to make a difference whether it’s a html4, transitional or strict. It leads to the captions appearing at the top of the boxgrids upon page load, and they only drop down to their required (ie, hidden) position when you first hover over them.

    July 5, 2011 · Reply

  357. steff Author Editor

    oh great plugin guys, nice to see someone really got involved in developing this sliding plugin!

    July 13, 2011 · Reply

  358. Nathan Author Editor

    Great script! Very helful!
    Trying to see if I can embed it into a wordpress site – fingers crossed!
    Thanks again!

    July 15, 2011 · Reply

  359. number8pie Author Editor

    Learning jQuery from some Lynda tutorials at the moment, and this kind of thing is helping me understand how to implement what I’m learning. Thanks!

    July 15, 2011 · Reply

  360. Harsh Author Editor

    nice work

    July 22, 2011 · Reply

  361. Madeline Author Editor

    This is exactly what I have been looking for to use on my portfolio website!
    But I have one quick question
    I am using this effect on my navigation, so when a link is selected I want the sliding div to stay visible.
    what would I add to the script make this happen?

    July 29, 2011 · Reply

  362. Annie Author Editor

    Thanks for this tutorial I am kinda new with Jquery. Is there a way to use this script as it is, but I want to click on the image and get a full view of it as well. Maybe convine it with other script? Is that possible? Thanks

    August 1, 2011 · Reply

  363. manoj Author Editor

    Thanks for this tutorial

    August 1, 2011 · Reply

  364. shafilark Author Editor

    Good.!

    August 2, 2011 · Reply

  365. Chasefornone Author Editor

    It is amazing,thanks for sharing!!

    August 6, 2011 · Reply

  366. Rajdeo Kumar Author Editor

    Its Really Helping ………………

    August 10, 2011 · Reply

  367. fund liberty reserve in nigeria Author Editor

    Thanks for this tutorial I am kinda new with Jquery. Is there a way to use this script as it is, but I want to click on the image and get a full view of it as well. Maybe convine it with other script? Is that possible? Thanks again

    August 15, 2011 · Reply

  368. Joe Author Editor

    Is there a way to hover over a text link in a ul to animate the image as well as hovering over the image?
    I am trying to achieve a similar effect to this: http://sharifabraham.com/projects/ but using these jazzy boxes! Any help would be really appreciated….

    August 15, 2011 · Reply

  369. fauxreal Author Editor

    This is amazing and so beautiful! thanks for sharing this. I found I didn’t like my text to be 80% transparent over the thumb, ended up removing that and having a trasparent png as a bg instead :D

    August 17, 2011 · Reply

  370. fauxreal Author Editor

    Oh and to confirm, this does in fact work with slimbox2, doesn’t work with slimbox1 and lightbox.

    August 17, 2011 · Reply

  371. Annie J Author Editor

    this is really good tutorial..

    August 19, 2011 · Reply

  372. kubilay Author Editor

    great, very helpful..

    August 20, 2011 · Reply

  373. Jonny Author Editor

    The box slides up when I hover over it and doesn’t slide back down into position when i hover off. Here is my code:

    $(document).ready(function () {
    $(‘.boxgrid.slidedown’).hover(
    function () {
    $(“.cover”, this).stop().animate({ top: ‘-350px’ }, { queue: false, duration: 300 });
    }, function () {
    $(“.cover”, this).stop().animate({ top: ’0px’ }, { queue: false, duration: 300 });
    })
    });

    I am using all the setting in a stylesheet. Any suggestions??

    August 23, 2011 · Reply

  374. Mesut Author Editor

    Thank you it was very useful and easy to implement :)) Thanks for sharing!

    August 23, 2011 · Reply

  375. Diego Author Editor

    Gooood!!!

    August 30, 2011 · Reply

  376. james Author Editor

    awesome. very helpful article

    August 31, 2011 · Reply

  377. Gilberto Author Editor

    The best.

    i like :)

    September 2, 2011 · Reply

  378. Saurabh Author Editor

    NIce slideshow..!! thanks a lot

    September 20, 2011 · Reply

  379. Alfonso Author Editor

    Nice slide, I love jquery.

    September 28, 2011 · Reply

  380. Manmohit Author Editor

    nice one Love It

    Thanx aloooooooot

    September 29, 2011 · Reply

  381. Luis fernando Author Editor

    Gracias, te felicito es un excelente trabajao de lujo

    September 29, 2011 · Reply

  382. corsi firenze Author Editor

    it works perfectly…very great job…thanks!

    October 5, 2011 · Reply

  383. web design egypt Author Editor

    I tried it and it work :)
    Thanks

    October 7, 2011 · Reply

  384. punithan Author Editor

    nice!!! it works great

    October 11, 2011 · Reply

  385. enursa Author Editor

    great. i love it. I need to my works. can i put it on commercial project?

    October 12, 2011 · Reply

  386. Arun Kumar Author Editor

    Always I like ur slider & use.

    October 12, 2011 · Reply

  387. web design egypt Author Editor

    thanks for the nice post .. it is really helpful :)

    October 16, 2011 · Reply

  388. adanyc Author Editor

    Hi, sorry for my bad english. I’m wondering if u could tell me what font did u use to do this image http://s3.amazonaws.com/buildinternet/images/sliding-boxes/slidebreakdown.jpg or in wich program did u do this image tutorial.
    Thank you.

    October 17, 2011 · Reply

  389. vajinismus Author Editor

    thanks…

    October 18, 2011 · Reply

  390. vajinismus tedavisi Author Editor

    super blogs thanks…

    October 18, 2011 · Reply

  391. Dinos Author Editor

    Thanks for this nice plug-in.
    I changed the sizes to smaller boxes 175×175 so I could fit 4 boxes in a row, but I struggling with something. I was trying to put some headings and separate work but the titles stick next to boxes and I couldn’t change line normally. The only way to change line was by adding lots of tags, but I ‘m convinced that there is a better way to do that.
    Could you help me?

    October 18, 2011 · Reply

  392. adanyc Author Editor

    Hi, please, could you tell me what program did you use to do this image http://s3.amazonaws.com/buildinternet/images/sliding-boxes/slidebreakdown.jpg i’m interested in the FONT because this font seems made by hand. Thank you.

    October 18, 2011 · Reply

  393. punithan Author Editor

    nice slide show boxes! thanks for posting here

    October 19, 2011 · Reply

  394. John Author Editor

    Awesome. I always love javascript over flash for this great reason.

    October 25, 2011 · Reply

  395. Rig Author Editor

    When js is turned off, only the loading gif displays. Is there a way to overcome this so that if someone’s looking at the page without js then at least the image and caption are displayed?
    This is a great plugin but without this option, anyone who has considerations for accessibility or even mobile devices will find they can’t use it without potentially alienating a share of their audience.
    Thanks in advance – and I don’t mean to appear ungrateful; I just happen to work in a sector where these considerations are essential and since I’m not familiar enough with jQuery and its ilk I rely on the goodwill and advances made by more talented people such as yourself.

    October 25, 2011 · Reply

  396. Flint & Tinder Author Editor

    I’m trying to implement this on a site that has Niall Doherty’s Coda Slider already implemented into it. It seems there is a conflict between the 2 features that makes the sliding boxes not work.

    Through process of elimination, it appears that it is the jquery.easing.1.3.js file that is required for the Coda slider that makes the sliding boxes feature not work. If I remove the link to the file, the boxes slide ok, but obviously the Coda slider no longer works. Has anyone else had this issue? If so, do you know of a solution?

    I’m keen to keep the Coda slider as I need the auto-height function for panels it provides, however I have promised the client that I’d do something special with the thumbnail links!

    October 26, 2011 · Reply

  397. RanjithSiji Author Editor

    Thanks for the tutorial. I am trying to implement the slide up effect on a client project. Quick time saver. Thanks.

    October 30, 2011 · Reply

  398. dani Author Editor

    Thank u very much for this!

    October 31, 2011 · Reply

  399. sajid Author Editor

    Great implementation of Slide Effect

    November 1, 2011 · Reply

  400. VVK Author Editor

    Thanks! reminds me of http://www.gamemantra.com/blog/index.php

    November 2, 2011 · Reply

 

Join the Conversation

Back to Top / Comment RSS

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