Placed in: comprar viagra en espaƱa
comprar viagra online
comprar viagra generico barato
comprar cialis generico online
comprar cialis online seguro
jQuery Code Expander

There is a problem on the web. Displaying actual programming code takes away a lot of space of the webpage (especially the longer ones). You can split up the code in several parts, but that's really hard to read for programmers. You can leave it "as it is" and users would have to scroll a lot if they're not interested in the code itself. And scrollbars in code-examples - that's just horrible (and yes - that's what I have on this website).

I created a solution for this problem and call it the jQuery Code Expander. It does exactly what you think it does - Expand any code you want to place online using jQuery.

jQuery Code Expander

But, before you can expand anything, it has to be cropped. That's where the CSS kicks in. It's like a combination of using scrollbars and fully showing the code!

Demo jQuery Code Expander   Download jQuery Code Expander

This script only changes those elements that needs to be expanded and doesn't touch those who don't. An additional overlay image is added, just to show the user that it can expand the code example. Check out the demo and read below what the secret of this technique is.

HTML

Although the HTML is very simply, it's vital to make this technique work. It looks like this:

 
<pre class="jcexpander"><code>
   <!-- Your code goes here -->
</code></pre>

The pre-element has a class (jcexpander) and one child element (code). That's all we need!

CSS

Once again, the CSS is really small, but this is another key to let this technique be a success. I've only placed the important stuff here - you can view the full CSS in the download.

 
pre.jcexpander {
   width:80%;
   height:500px;
   overflow:hidden;
}

As you can see, the pre element has been trimmed down. The overflow is set to hidden so you won't see the scrollbars. You should have a cropped version of the code block right now. Now, on to the jQuery part!

jQuery

There is something really important going on over here: Although the pre-element has been cropped down, the code-element hasn't. This means, that when you request the size of the code-element, you would get the size of how big it really is (when it wasn't cropped). That information is what we're going to use next.

I came up with the following script (which also adds the icon on top). Comments are added to make things clear.

 
/*
* Author:      Marco Kuiper (http://www.marcofolio.net/)
*/
google.load("jquery", "1.3.1");
google.setOnLoadCallback(function()
{
   // We'll need to loop through each <pre> element
   // with the class "jcexpander"
   $("pre.jcexpander").each(function(){
      
      // Only do something when the inner element (the <code> element)
      // is bigger than the parent (<pre>) element
      if( $("code", this).height() > $(this).height() ||
         $("code", this).width() > $(this).width()) {
         
         // We'll need to store the original values of the sizes
         // since we'll use it to "grow back"
         $(this).data('originalHeight' , $(this).height());
         $(this).data('originalWidth', $(this).width());
         
         // Create a IMG element for the overlay
         var icon = document.createElement("img");
         $(icon).css({ 'position' : 'absolute'});
         $(icon).attr("src", "images/fullscreen.png");
         
         // Append the image to the <pre> element
         $(icon).prependTo($(this));
         
         // When the <pre> element is hovered, this happens
         // First function is "over", second is "out"
         $(this).hover(function(){
            // Fade out the image
            $(icon).fadeOut();
            
            // Read the size of the <code> element
            var codeWidth = $("code", this).width();
            var codeHeight = $("code", this).height();
            
            // Size the <pre> element to be just as big
            // as the <code> element
            $(this)
               .stop()
               .animate({
                  width : codeWidth + "px",
                  height : codeHeight + "px"
               }, 1500);
               
         }, function(){
            // Fade in the image
            $(icon).fadeIn();
            
            // Size the <pre> element back to the
            // original size.
            $(this)
               .stop()
               .animate({
                  width : $(this).data('originalWidth') + "px",
                  height : $(this).data('originalHeight') + "px"
               }, 1500);
         });
      }
   });
});

And that's it! You can now try the script or just view the demo.

Conclusion and Download

Pretty cool, don't you think? If you want to implement this on your website, you might want to mess with the CSS (z-index and position) to make sure it doesn't break anything of your layout. I'm also aware of the problem that, if you expand the bottom box and scroll down, the window flashes. It's because there is a background image and I sadly don't thing there's a solution for this.

Demo jQuery Code Expander   Download jQuery Code Expander

What do you think of this script? Do you love it, see room for improvement, or think it's a bad idea overall? Feel free to share!


Tags:  code expander jquery webdevelopment

Interested in this topic? You might enjoy another article I've written called

Did you like this article? Subscribe to my feed or email to keep updated on new articles.

Spread the word and submit to:
Digg!Reddit!Del.icio.us!Facebook!StumbleUpon!
 
< Prev   Next >