jQuery convertion: Garagedoor effect using Javascript

103

Today I finally found the courage to go and try jQuery. After getting some people say: “You should use jQuery instead of scriptaculous.” I began thinking. What is the reason I choose script.aculo.us again? Must have been something I read in that time.
Anyway, today I found the time to look at jQuery a bit and thought: Let’s convert my very first posted script to jQuery!

After 5 minutes of reading about selectors in jQuery and 15 minutes of coding it was born. I am super amazed by the results! About 40%/50% less code and about 200% less time needed to write the script. I bet that in the future 400% less time is reachable!

For all the jQuery lovers: Here is the Garage Door effect. Now in jQuery!

jquerygarage

Download
jQuery Garage Door zip-archive
Example
Open the jQuery Garage Door example

Since this article is a redo of Garagedoor effect using Javascript I’ll just make it so that it fits jQuery.

An example of the GarageDoor effect in work is found here: http://www.gayadesign.com/scripts/jquerygaragedoor/

Download the following archive containing everything you need: http://www.gayadesign.com/scripts/jquerygaragedoor/jquerygarage.zip

Unzip the contents of the archive and upload the contents to your server, the set folders can be adjusted to your needs.

First we need to make the script ans style of the GarageDoor work. To make that happen, you’ll need jQuery. This library enables interface effects, so you don’t have to create it yourself. So grab jQuery and upload it to your server.

Add the following code in the tag of your page:

<script src="js/jquery-1.3.2.min.js" type="text/javascript"></script>

<script src="js/garagedoorjQuery.js" type="text/javascript"></script>
<link href='css/garagedoor.css' rel='stylesheet' type='text/css' />

This will load the scripts and styles needed for the GarageDoor to work. Adjust the paths where needed.

The next thing you want to do is to create the HTML layout for the garagedoors. The following code shows the structure you need to create for your document:

<div class='garagedoor' id='garagedoor'>
    <div title='linktofile' class='item'>
        <div class='underlay'>
            Caption text
        </div>
        <img src='uritooverlayimage' class='overlay' />
        <div class='mouse'><img src='images/nothing.gif' />&nbsp;</div>
    </div>
    <div title='linktofile' class='item'>
        <div class='underlay'>
            Caption text
        </div>
        <img src='uritooverlayimage' class='overlay' />
        <div class='mouse'><img src='images/nothing.gif' />&nbsp;</div>
    </div>
</div>

his contains two items that will be the garagedoor. The keywords linktofile and uritooverlayimage have to be adjusted in order to make it work. Linktofile is the URL of the page the button has to link to, might be confusing because it’s not an a tag, but Javascript fixes it for you.

The items have a default size of: 100px width and 80px height. Create overlay images according to these dimensions. In order to change the size, take a look in the garagedoor.css file and adjust the width and height of several elements.

All there is left to do is call the GarageDoor to enable the effect!

<script>
    GarageDoor.scrollY = -55;
    GarageDoor.scrollX = 0;
    GarageDoor.setBindings('garagedoor');
</script>

The first line in the <script> tag sets the amount of scrolling the overlay has to do when the cursor is floating over an item. In this example the overlay has to go 55 up, which means move -55px on the Y-axis.
You can also make it scroll horizontal.

Give the id of the garagedoor container to the setBindings method and the GarageDoor effect will be initialized! Be sure to make the call after creating the html.

Hope you liked this jQuery version of the Garage Door. No more prototype conflicts!

Stay tuned for more jQuery convertions!

Articles like this one

If you liked this article you can add this post to:


 

34 Comments

  1. Louis Gubitosi said: April 8, 2009 at 7:45 pm | Permalink

    dude, keep up the good work! I’m sure I’ll be using these tut very soon. thanks again…


  2. Gaya said: April 8, 2009 at 7:50 pm | Permalink

    thanks Louis for commenting and RTing my tweets =D


  3. Drew said: April 8, 2009 at 8:01 pm | Permalink

    This is awesome Gaya, it’s really nice to see you getting into jQuery as it is my Javascript library of choice. You should consider submitting some of these to NETTUTS, the quality is superb.


  4. Gaya said: April 8, 2009 at 8:18 pm | Permalink

    @Drew
    Thanks Drew! I was thinking about submitting something to NETTUTS. Already pitched an idea to them. I think my next Javascript / jQuery adventure will be for NETTUTS.

    Also: Dev-tips is now in the partners list. Thanks again Drew.


  5. Janko said: April 8, 2009 at 9:33 pm | Permalink

    Awesome effect, good to see you’ve done it with jQuery easily!


  6. Gaya said: April 8, 2009 at 9:49 pm | Permalink

    @Janko:
    Yeah! jQuery amazed me! This will save me so much time!


  7. Marco said: April 8, 2009 at 10:01 pm | Permalink

    Finally, you see the “light of jQuery”. Took you a while, but I’m glad you made it.

    Anyway, still pretty cool to see this neat effect, now using jQuery! Well done Gaya, keep up the good work :) .

    Ps. Load jQuery from Google, will save you bandwidth and hosting multiple jQuery files :) .


  8. Gaya said: April 8, 2009 at 10:04 pm | Permalink

    @Marco
    Thanks for being part of my enlightenment Marco. I hope this will bring more interesting developers to my site =)

    Will load from google if I am implementing jQuery on GayaDesign. Will save me time, and the user!


  9. Pim said: April 9, 2009 at 8:50 am | Permalink

    “Hate to say I told you so” ;) Keep up the good work Gaya. Will save me some frustrations as well ;)


  10. Matěj Grabovský said: April 9, 2009 at 6:58 pm | Permalink

    Awesome, another jQuery victim, muhahahaha, anyway congratulations on discovering the power of jQuery and making such a nice tutorial.


  11. Matěj Grabovský said: April 9, 2009 at 7:00 pm | Permalink

    Sorry for double post but a suggestion: how about a variable controlling the scrolling speed?


  12. Gaya said: April 9, 2009 at 8:18 pm | Permalink

    Great idea Matěj! Could be implemented with ease. But note that the garage door opens faster than closes. Anyway, thanks for the comment!


  13. Pablo said: May 9, 2009 at 6:10 am | Permalink

    Great effect. Can I suggest that you add your example page and images to the package. It makes it easier to download, get it working locally and then modify.


  14. Nitin Sawant said: May 16, 2009 at 3:36 pm | Permalink

    gr8!! effect,

    your site design is also good,

    regards,
    Nitin Sawant


  15. Gaya said: May 19, 2009 at 10:49 am | Permalink

    Thanks for the comment Nitin :)


  16. GadenStar said: July 17, 2009 at 2:59 am | Permalink

    very cool!!


  17. Jose said: July 29, 2009 at 7:38 am | Permalink

    great stuff, bro! thanks for sharing!
    your site rocks :) the 3d stuff is nicely done.


  18. Sofian said: October 28, 2009 at 12:49 am | Permalink

    Awesome.. thank you Gaya..
    (in my country Indonesia : Gaya means Style)


  19. Gaya said: October 28, 2009 at 9:10 am | Permalink

    @Sofian: hah, thanks dude. I’ve heard that one before. Funny thing that I’m half Indonesian


  20. Techie Talks said: November 28, 2009 at 10:50 am | Permalink

    Wow! This is such an impressive site. How did you do the header its cool to see.


  21. Jack Starr said: November 30, 2009 at 6:21 am | Permalink

    nice article…maybe, its more wonderful with png image….


  22. wespai said: December 31, 2009 at 3:54 am | Permalink

    thx collect it to

    ajax.wespai.com


  23. chicago web design said: April 9, 2010 at 3:50 pm | Permalink

    Good that you finally found jquery and shared it with us.


  24. Martin Holm said: May 6, 2010 at 9:04 pm | Permalink

    Hi you guys

    is it possible to put more than one link underneath each “garage door”? If so, how do i do it?? :)

    hope you have an answer because i am really stuck on this one..


  25. alex said: August 9, 2010 at 9:49 pm | Permalink

    Cheerful menu :)


  26. Ankinanti said: October 8, 2010 at 2:25 am | Permalink

    Hey..nice tutorial..
    i bookmarked this page in case i need it someday..
    anyway, i thought you’re come from Indonesia, since Gaya is actually a bahasa that means Style.. :D


  27. bingbing said: November 22, 2010 at 12:15 pm | Permalink

    Thank you very much for your explain.I think I will study well from reading these .


  28. Dave said: December 4, 2010 at 10:29 pm | Permalink

    Having issues getting this to work in blogger, can it be done? If so is there something I need to do different than what is mentioned above?

    Thanks in advance


  29. TheEagle said: December 9, 2010 at 10:08 am | Permalink

    The best over the net But it would be better if the overlay overflow is hidden.I don’t mean in the code I mean in the result.For example when the overlay overflow a border around the item it will be hidden..like a window or a real garage door.I tried to do it by putting a Div with overflow:hidden around the overlay but it is just ignored by the browser?!!

    Could any one help?


  30. Brad Maver said: March 4, 2011 at 10:25 pm | Permalink

    Great post, that is a very cool effect! Thanks for Sharing!


  31. Banibeteeli said: April 2, 2011 at 10:50 pm | Permalink

    Извините, внезапно стал серьезным Ваха, мгновенно сбросив маску великосветского повесы. Кажется, происходит что-то важное.
    А что тут думать? удивилась Альмия. Я, вообще-то, жить хочу и не намерена умирать через два-три года. Да и магия вещь интересная. Для семьи тоже полезно. Ты сам подумай, как среагируют в обществе, когда узнают, что твоя дочь великий маг.
    Противоположная дверь исчезла, и на пороге показалась чернокожая красавица с гривой белоснежных волос.
    Переливающийся непривычными глазу любого трирроунца цветами парк вокруг посольства ордена Аарн приближался. Альмия нервно вздрогнула, парк она уже посещала, и это не пугало, даже наоборот. А вот в самом посольстве бывать не доводилось. С какой, интересно, стати ее отец получил три приглашения на устраиваемый послом прием?
    Бери и моих, появился в еще одной рамке Релир. Мало ли, у тебя всего восемь тысяч бойцов, может и не хватить.

    [url=http://agticreche.net16.net/article.php?article=702426]Легкие и эффективные диеты[/url]
    [url=http://agticreche.net16.net/article.php?article=112264]Диета похудеть на 5 кг[/url]
    [url=http://agticreche.net16.net/article.php?article=498898]Конструктор диет отзывы[/url]
    [url=http://agticreche.net16.net/article.php?article=978150]Эффективна ли гречневая диета[/url]
    [url=http://agticreche.net16.net/category.php?category=11&page=2]Уникальная диета[/url]

    [url=http://deselcentlond.net16.net/article.php?article=813086]Диет система 30 плюс[/url]
    [url=http://deselcentlond.net16.net/category.php?category=20&page=1]Диета людмилы гурченко[/url]
    [url=http://deselcentlond.net16.net/article.php?article=59189]Диета татьяны устиновой[/url]
    [url=http://deselcentlond.net16.net/article.php?article=769476]Вода во время диеты[/url]
    [url=http://deselcentlond.net16.net/article.php?article=950813]Диета южного берега[/url]

    [url=http://disczenesxe.net16.net/article.php?article=129775]Диета елены виниловой отзывы[/url]
    [url=http://disczenesxe.net16.net/article.php?article=782447]Какая диета при язве желудка[/url]
    [url=http://disczenesxe.net16.net/category.php?category=5&page=1]Диета сонома[/url]
    [url=http://disczenesxe.net16.net/article.php?article=4139]Диета при беременности 1 триместр[/url]
    [url=http://disczenesxe.net16.net/article.php?article=181276]Способы диеты[/url]

    [url=http://drumuninra.hostzi.com/article.php?article=413137]Диета маргариты королевой книга[/url]
    [url=http://drumuninra.hostzi.com/article.php?article=145125]Форум гречневой диеты[/url]
    [url=http://drumuninra.hostzi.com/article.php?article=379739]Кремлевская диета отзывы негативные[/url]
    [url=http://drumuninra.hostzi.com/article.php?article=647784]Диета при диафрагмальной грыже[/url]
    [url=http://drumuninra.hostzi.com/article.php?article=437899]Меню французской диеты[/url]

    [url=http://elenoval.net16.net/article.php?article=90176]Дробная диета[/url]
    [url=http://elenoval.net16.net/article.php?article=742087]Мандариновая диета отзывы[/url]
    [url=http://elenoval.net16.net/article.php?article=464593]Легкая диета на неделю[/url]
    [url=http://elenoval.net16.net/article.php?article=578334]Самая эффективная диета для мужчин[/url]
    [url=http://elenoval.net16.net/article.php?article=388859]Аллергическая диета[/url]

    [url=http://esforposi.hostoi.com/article.php?article=607485]Диета для второй группы крови[/url]
    [url=http://esforposi.hostoi.com/article.php?article=533446]Диета для мужчин[/url]
    [url=http://esforposi.hostoi.com/article.php?article=406396]Диета вареный рис[/url]
    [url=http://esforposi.hostoi.com/article.php?article=54886]100 способов похудеть[/url]
    [url=http://esforposi.hostoi.com/article.php?article=588664]Водная диета отзывы комментарии[/url]

    [url=http://exexnaucom.net16.net/article.php?article=245403]Диета после операции язвы[/url]
    [url=http://exexnaucom.net16.net/article.php?article=560940]Диета при гепатите ц[/url]
    [url=http://exexnaucom.net16.net/article.php?article=97622]Диета без смс[/url]
    [url=http://exexnaucom.net16.net/article.php?article=817756]Диета после панкреатита[/url]
    [url=http://exexnaucom.net16.net/article.php?article=359071]Гороховая диета[/url]

    [url=http://glowenamec.hostoi.com/article.php?article=144259]Диета для быстрого сброса веса[/url]
    [url=http://glowenamec.hostoi.com/article.php?article=927512]Тест диета без смс[/url]
    [url=http://glowenamec.hostoi.com/article.php?article=216424]Супер диета бесплатно[/url]
    [url=http://glowenamec.hostoi.com/article.php?article=410471]Подбор диеты бесплатно[/url]
    [url=http://glowenamec.hostoi.com/article.php?article=290509]Диета для фигуры[/url]

    [url=http://panbobuno.hostzi.com/article.php?article=514033]Скачать капустная диета[/url]
    [url=http://panbobuno.hostzi.com/article.php?article=891935]Минусы кремлевской диеты[/url]
    [url=http://panbobuno.hostzi.com/article.php?article=425619]Диета при эрозивно геморрагическом гастрите[/url]
    [url=http://panbobuno.hostzi.com/article.php?article=264753]Очистительная диета[/url]
    [url=http://panbobuno.hostzi.com/article.php?article=495921]Диета при оксалатах в почках[/url]

    [url=http://pitwamopi.hostzi.com/article.php?article=641105]Диета для прибавления веса[/url]
    [url=http://pitwamopi.hostzi.com/category.php?category=19&page=2]Сахарный диабет диета питание[/url]
    [url=http://pitwamopi.hostzi.com/article.php?article=628151]Диета 400 ккал[/url]
    [url=http://pitwamopi.hostzi.com/article.php?article=316727]Макаронная диета для похудения[/url]
    [url=http://pitwamopi.hostzi.com/article.php?article=633732]Диета 5 на каждый день[/url]

    [url=http://drumuninra.hostzi.com/article.php?article=153341]Диета для похудения после 50[/url]
    [url=http://drumuninra.hostzi.com/article.php?article=63256]Подари себе жизнь диета[/url]
    [url=http://drumuninra.hostzi.com/article.php?article=866075]Диет формула[/url]
    [url=http://drumuninra.hostzi.com/article.php?article=22932]Диета кефир и творог[/url]
    [url=http://drumuninra.hostzi.com/article.php?article=653847]Жидкая диета результаты[/url]

    [url=http://tellopupmoi.net16.net/article.php?article=50172]Молочная диета для похудения отзывы[/url]
    [url=http://tellopupmoi.net16.net/article.php?article=156256]Арбузная диета для похудения[/url]
    [url=http://tellopupmoi.net16.net/article.php?article=438282]Диета при межпозвоночной грыже[/url]
    [url=http://tellopupmoi.net16.net/article.php?article=606404]Диета против прыщей[/url]
    [url=http://tellopupmoi.net16.net/article.php?article=405181]Диета по дням недели[/url]

    [url=http://tusmilgtaming.webatu.com/article.php?article=198351]Рецепты 4 стол диета[/url]
    [url=http://tusmilgtaming.webatu.com/article.php?article=495944]Диета 3 по певзнеру[/url]
    [url=http://tusmilgtaming.webatu.com/article.php?article=48589]Грейпфрут диета[/url]
    [url=http://tusmilgtaming.webatu.com/article.php?article=651056]Диета для бедер отзывы[/url]
    [url=http://tusmilgtaming.webatu.com/article.php?article=816576]Меню диеты 9[/url]


  32. Ed Nailor said: September 2, 2011 at 1:54 pm | Permalink

    Does this work with the latest version of jQuery (1.6)? Please email me.


  33. Youlanda Enny said: September 8, 2011 at 9:59 pm | Permalink

    I do agree with all of the ideas you’ve presented in your post. They are very convincing and will certainly work. Still, the posts are very short for starters. Could you please extend them a little from next time? Thanks for the post.


  34. viagra said: September 9, 2011 at 1:47 am | Permalink

    Iˇ¦ve been exploring for a bit for any high-quality articles or weblog posts in this kind of area . Exploring in Yahoo I eventually stumbled upon this web site. Studying this info So i am happy to convey that I’ve an incredibly good uncanny feeling I discovered exactly what I needed. I most indisputably will make certain to do not overlook this site and give it a glance on a constant. Read this kamagra bez recepty


Leave a Comment

Your email is never shared. Get your own avatar with gravatar! Required fields are marked *

*

*



 

69 Trackbacks

  1. By 清晰博客 » 36个引人注目JQuery导航菜单 on September 17, 2009 at 5:45 pm
  2. By Os 25+… Menus e Plugins em jQuery! | PixelFont on October 22, 2009 at 2:08 pm
  3. By 25 Menus e Plugins para Jquery | Renan Lima on October 23, 2009 at 9:17 pm
  4. By 享受生活 » 36个引人注目JQuery导航菜单 on January 2, 2010 at 11:52 am
  5. By 33 jQuery tutorials to create Navigation Menu on June 2, 2010 at 12:55 pm
  6. By 33 jQuery Menü | SyncapNoktaOrg on June 10, 2010 at 12:09 pm
  7. By Top five jQuery Menu effects : Developers Stuffs on September 13, 2010 at 1:29 pm
  8. By 20个优秀的Javascript导航技术 | 子曰博客 on November 16, 2010 at 7:37 am
  9. By 15 Great jQuery Navigation | jQuery4u on December 15, 2010 at 1:35 pm
  10. By Animierte Navigationen | WebmasterArchiv.com on January 25, 2011 at 10:31 am
  11. By 28 menus met jQuery | Fledermaus.nl on November 8, 2011 at 9:13 pm