Related Post

112 Comments Received

May 1st, 2007 @12:08 pm  

I don’t think onClick is particularly intuitive. Considering it’s out the way (by some measure) wouldn’t it make more sense to react on hover?

May 1st, 2007 @12:14 pm  

yeah thats very possible. The only thing I was trying to avoid was for the slide to start without the user knowing what was going on. With so many flash banner adds that stretch over the content totally stopping users from reading the copy I decided that I didnt want to provide an on hover just incase it looked a bit spamy. I get your point though and it can be easily implemented. Maybe a better more eye catching deign is the way to go?

May 9th, 2007 @4:15 pm  

Dear Sir or Madam, i really liked you sliding menu! although could i use it for my webside works? and how could i change the manu position from right to left and middle to top like? also how to change the menu images inot others? THANKS EVER SO MUCH!!!

May 12th, 2007 @8:13 pm  

wow..this is sexy..great work.

(pink bLack)

May 23rd, 2007 @6:02 am  

Wow this is a nice (sexy) menu.
Good Work

May 23rd, 2007 @10:56 pm  

I have a question what modules of mootools did you use, of i have a another application of a slideshow so that i dont have double modules..

May 30th, 2007 @9:59 am  

Hello, this is awesome! I too would like to know which modules were used; as to not interfere with other mootools implementations.

May 30th, 2007 @6:47 pm  

Is there any way to get the tab to follow the content box when the slide menu is on the left side. Currently it will follow the content box when positioned to the right side of the screen but not the left. Thanks.

June 11th, 2007 @6:15 pm  

I Andy
I would like to start the slidebar open and then onclick closed.
I try to modify in the css #sidebar - right: 250px but not work well.
Please you have suggestion.
Thanks

June 14th, 2007 @4:59 am  

Euugh! Sliding menus are as bad as blinking text and sliding banners, they belong in 1997 not 2007

June 17th, 2007 @7:40 am  

Just to say it doesn’t work with Konqui.
With CSS hype, it was easyer to use NOT( FF && IE ) navigator. With DIY2.0 it seem’s to be 90’s come again. :(

June 19th, 2007 @6:16 pm  

Here about your site(side-bar.js) in Javanese!
http://youmos.com/news/side_bar_menu_js
Thanks!

July 13th, 2007 @5:41 am  

Thanks for the link youmos. :-)

July 13th, 2007 @11:55 pm  

Wow… great job :) Thanks…

August 15th, 2007 @9:29 am  

There’s a little typo in the css :
body{padding:0px; /* paddign^^ */}
and a bug on opera fixed by a :
#sideBarContents{float:left;}

Really good mootools use… I like it, and will use it

September 9th, 2007 @11:53 pm  

how to add it in php-fusion , same like here :
http://www.phpfusion-themes.com

November 7th, 2007 @9:28 am  

wow!! … amazing menu .. thanks a lot!!

November 13th, 2007 @4:56 pm  

Hi Andy,

re: degrading with JS turned off

Why don’t you just collapse the sidebar menu via mooTools when the page is initially loaded. That way when Javascript is off the side menu will be expanded and usable as per usual.

I’ve used that technique quite a few times for jQuery snippets I’ve done and it always works a treat. JS users get what you intend, everyone else gets a static version that works just as well.

November 14th, 2007 @3:46 am  

Just found that the right: -7px will result in a scrollbar on the bottom of the browser. Adjust it to 0 and it works nicely.

Additionally, when using this on a templated page, a click on the opener will send you back to index.php as the link event is not stopped. So, simply replace the event click like this:

$(’sideBarTab’).addEvent(’click’, function(event) { event = new Event(event).stop(); extendContract()});

This will prevent the link to get passed through.

November 14th, 2007 @11:08 pm  

I like it so far. You can always improve it by adding a way to add more child menus?

November 17th, 2007 @10:04 am  

Hello folks. While redesigning my blog I discovered the Sexy sliding bar. made a little change in the js and html to suppress the Safari problem. Probably not the best solution but efficient: just put the minimal width at 1px. Tested on Safari 2 and Firefox 2 (OSX Tiger)

in html code:

in side-bar.js:

if(isExtended == 0){
sideBarSlide(0, height, 1, width);

else{
sideBarSlide(height, 0, width, 1);

November 26th, 2007 @3:05 pm  

Can somebody please teach me how to get this amazing menu????

December 10th, 2007 @2:23 pm  

Jaliefa
Just download the sample provided, it all works and you can do whatever you like with it.

January 5th, 2008 @2:15 pm  

hello people if you need more about css you can check http://webmaster-labs.blogspot.com/ here.

January 9th, 2008 @11:17 pm  

what’s a cool!! thank you.

January 11th, 2008 @9:57 am  

This is a great menu and I’m having great fun playing around with it, so thank you very much!

However, do you know if there is a way to “float” or “position” the menu above layers without having to use position:absolute?

The reason being is I’m designing a fixed width site and not a fluid one and would love the menu to sit on my right hand column.

Cheers

January 11th, 2008 @10:12 am  

Also, is there any chance of revising the menu for a “top bar” so that it comes in from the top of the page?

January 12th, 2008 @5:58 am  

Making the bar come from the top of the page should not be very difficult and I am working on it over the next week or so, so come back soon to see the results.

January 12th, 2008 @6:40 am  

and opera????? :(

January 14th, 2008 @3:03 am  

Cheers Andy, look forward to it.

Efwe, see Alcarin’s comment regarding Opera here, http://www.andrewsellick.com/35/sexy-sliding-javascript-side-bar-menu-using-mootools#comment-3100

February 3rd, 2008 @8:25 am  

Hi,
great work - lovin’ it.
I would also be interested in a “mouseover” version.

Keep up the good work.

Cheers

February 13th, 2008 @4:01 am  

too…………good…………

February 16th, 2008 @3:00 pm  

Hello,

Great script, I’ve used it on my site.
One question here, how to remove the ‘#’ in the URL when clicking the menu?
e.g., http://gallery.zzvo.com/main.php#
remove the ‘#’ at the end of the URL?

Thanks.

February 17th, 2008 @6:59 am  

Hi Jesse,

Great implementation. Looks fantastic. To remove the # you need to simply stop the event. This can be achieved with the following example:

$(’element’).addEvent(’click’, function(e){
e = new Event(e);
e.stop();
});

Hope that helps. I’m currently rewriting the code into a class and trying to include as many of the features that have been requested as I can so come back soon to see the all new Sexy Sliding side bar.

February 17th, 2008 @7:55 am  

Hi, andy

Thanks for your encouragement.
Code added, Problem solved. Take a look at my gallery site:
http://gallery.zzvo.com/

I have a suggestion, can you turn it to supporting auto HEIGHT?

I’ve removed some features, coz my menu is dynamic and unfixed height.
It caused problem with unfixed height. Fixed width is ok, no problem.

Looking forward to the new code.

February 22nd, 2008 @1:27 pm  

It works great and I am very happy that I got it here thanks a lot

February 29th, 2008 @2:45 pm  

Very nice, thanks for the work.

I want to use this on my site with a custom image, but in IE the image doesn’t show, and in FF the arrow doesn’t flip. How can I get it to flip when opened?

Thanks in advance.

February 29th, 2008 @2:54 pm  

Nevermind- I got it. Thanks for for the fantastic sidebar!

April 1st, 2008 @11:02 pm  

hey man,

Thank you very much for the wonderful… Slide-in-bar.. It is awesome and simply cool…

Thanks a lot..
regards
nair

April 3rd, 2008 @9:00 pm  

Cool menu and I would love to use it only if I could figure it out. Is there a way to move this tab from the side of the page. I have a center element or a container that has margin: auto for left and right. So to hang this tab menu off this element causes it to push this center container down. How do I work around this without making the container position: absolute?

April 7th, 2008 @9:33 pm  

I must say, this is one of my favourite tutorials. Check the website that I made. I tried my best to change the look to give it a more unique style. I couldn’t change the pink because its one of my favourite colours! And no, it doesn’t belong to the ’90s old fashion design. It only depends on how you use it. Am I right Andrew? :P

April 8th, 2008 @12:43 pm  

Hey everybody,

Very nice job but how can I do to make multiple slide-in bar?

Thx
Regards

April 15th, 2008 @3:51 am  

cool work. very nice sliding movement

April 17th, 2008 @5:03 am  

Great work, Andrew!

Here is a jQuery version for the Sexy Sidebar.

April 18th, 2008 @1:44 am  

diffucult

April 24th, 2008 @8:39 am  

Great menu!
Do you have an idea when you will be working on the your future plans for this menu (accessibility optimization etc.)? I am working this menu into a clients site right now but accessibility is very important to him especially the visibility of the menu when javascript is off.

Thanks!

April 30th, 2008 @2:10 pm  

any update andy?

has anyone managed to have more then one of these on a single page??

thanks

May 2nd, 2008 @3:12 pm  

thanks

May 23rd, 2008 @1:45 am  

Is there anyway to have multiple menus on one site?

June 11th, 2008 @10:15 am  

how I could change the menu bar position from right to left?

June 17th, 2008 @4:12 am  

what to do to make the sidebar work with mootools 1.2?

Fx.Style is no longer available?

Best W

June 17th, 2008 @5:07 am  

“what to do to make the sidebar work with mootools 1.2?

Fx.Style is no longer available?”

Are you gonna port it?

June 18th, 2008 @2:46 am  

Try changing:

new Fx.Styles -> new Fx.Morph

and

myEffects.custom -> myEffects.start

Should be working with 1.2 then.

June 18th, 2008 @4:02 am  

working now with 1.2.

many, many thx!!!

Best W

June 24th, 2008 @2:50 am  

its a great hack.. i want to implement it on my blog.. but something is gng wrong…can you explain in brief as to how do i put codes in my template.. waiting for your reply.. thank you

visit: FreeDownloadz

July 16th, 2008 @12:51 pm  

I love this, what a great tool! However, I’m also curious if anyone has found a way to have more than one menu on a page. Any info here at all?

Thanks
~Brandy

July 25th, 2008 @2:59 pm  

Great work.
I am having problem using this on Firefox 3. Menu gets displayed below the Sidebar image. But works fine with IE7. Any fix?

August 11th, 2008 @11:05 am  

for Firefox 3.0 just float the sidebartab and sidebarcontents

August 11th, 2008 @5:40 pm  

Thanks. Very good css Menu.

August 11th, 2008 @8:00 pm  

tankyou, muy bueno

August 11th, 2008 @8:02 pm  

muy bueno

August 12th, 2008 @6:48 am  

The html-source contains a mistake:
in line 11: paddign = padding

But really good work ;)

August 18th, 2008 @1:19 pm  

somebody can xplainme how to put this excelent bar menu in the left side of my website?

August 21st, 2008 @2:49 pm  

Wow… really great job…thanks

August 25th, 2008 @8:26 am  

this doesn’t seem to work in ff3, safari3

August 26th, 2008 @11:18 pm  

not working propely in mozilla

August 27th, 2008 @10:47 pm  

Good job and thanks fo sharing !

September 2nd, 2008 @11:09 pm  

Hi there!

I’m trying to use your sexy menu on a page wheree I also use mootools fx slide. How can I do to make it work with fx slide? I user mootools mootools-1.2-core.js.

When I to implement you menu the fx slide content stop working.

Hope someone can replay me….

/thanx

September 4th, 2008 @1:45 pm  

hentai mushrooms mushroom hentai of mushroom

Pingback & Trackback
Pingback from Sexy Sliding SideBar using mootools at Van2T in July 2nd, 2007 @6:04 am  
Pingback from Name and Shame at Andrew Sellick in July 13th, 2007 @6:39 am  
Pingback from 20 Awesome Java script CSS Menus in October 31st, 2007 @2:09 pm  
Pingback from i say that | Best Of October 2007 in December 14th, 2007 @6:17 am  
Pingback from Powerful CSS-Techniques For Effective Coding in February 23rd, 2008 @9:27 am  
Pingback from Profesyonel Ajax ve Javascript’ler « kamer) in April 25th, 2008 @9:26 am  
Pingback from CSS Tricks und Tutorials | Photoclinique in July 28th, 2008 @11:40 pm  
Pingback from The Best CSS / Javascript Menu’s | Net Feast in August 16th, 2008 @1:34 am  
Pingback from 25 Awesome tutorials for web designers | Boxed CSS in August 16th, 2008 @6:54 am  
Pingback from Menu coulissant en Mootools | Web design in August 19th, 2008 @8:24 pm  
Leave A Reply

Please Note: Comments maybe under moderation after you submit your comments so there is no need to resubmit your comment again