Simple Effects for Drop-Down Lists

A jQuery plugin for transforming select inputs into drop-down lists with some simple expanding effects.

Simple Effects for Drop-Down Lists

Today we want to share some simple drop-down list effects with you. The idea is to transform a normal select input into something more appealing with a jQuery plugin. The expanding of the options will happen with a transition and parameters can be configured in a way to achieve unique effects.

After the great custom drop-down list styles made by Hugo in his tutorial Custom Drop-Down List Styling, we wanted to make it simple to create a custom structure from a normal select input (without multiple option selection). So, we’ve come up with this little plugin that will allow some custom styling of the drop-down list. With the generated structure it is easy to apply some simple effects in order to spice it up.

Please note that the CSS transforms and transitions only work in browsers that support them.

Without JavaScript, the normal select input will simply be shown.

The icon font was created with IcoMoon.

So, we start out with a select input, for example:

<select id="cd-dropdown" class="cd-select">
	<option value="-1" selected>Choose an animal</option>
	<option value="1" class="icon-monkey">Monkey</option>
	<option value="2" class="icon-bear">Bear</option>
	<option value="3" class="icon-squirrel">Squirrel</option>
	<option value="4" class="icon-elephant">Elephant</option>
</select>

A dropdown plugin can be applied as follows:

$( '#cd-dropdown' ).dropdown();

The select and the options get transformed into the following structure:

<div class="cd-dropdown">
	<span>Choose an animal</span>
	<input type="hidden" name="cd-dropdown">
	<ul>
		<li data-value="1"><span class="icon-monkey">Monkey</span></li>
		<li data-value="2"><span class="icon-bear">Bear</span></li>
		<li data-value="3"><span class="icon-squirrel">Squirrel</span></li>
		<li data-value="4"><span class="icon-elephant">Elephant</span></li>
	</ul>
</div>

When clicking on the first span, we will apply the class “cd-active” to its parent, the division with the class “cd-dropdown”. When selecting an option, the respective span will get inserted into the first one.

Options

The following default options are available:

speed : 300,
easing : 'ease',
gutter : 0,

// initial stack effect
stack : true,

// delay between each option animation
delay : 0,

// random angle and positions for the options
random : false,

// rotated [right || left || false]: the options will be rotated to the right side or left side
// make sure to set the transform-origin in the style sheet
rotated : false,

// effect to slide in the options
// value is the margin to start with
slidingIn : false

The basic common styling is defined in the common.css file and you can see the individual styles in the styleN.css style sheets.

Demos

Check out the demos to see some different configurations in action:

Hope you enjoy this little plugin!

Tagged with:

Manoela Ilic

Manoela is the main tinkerer at Codrops. With a background in coding and passion for all things design, she creates web experiments and keeps frontend professionals informed about the latest trends.

Stay up to date with the latest web design and development news and relevant updates from Codrops.

Feedback 183

Comments are closed.
  1. Codrops always has the highest quality css3 + jQuery tutorials. Nicely done and thank you Mary Lou.

  2. Wow, you guys continue to amaze me with your awesome tutorials. Very valuable information. I’ll be using this to spice up some dropdowns (or select boxes according to W3C) in no time.

  3. Thank you for this beautiful demos/tutorials. I want to grow up to be just like you when i code up. Do you have any suggestions besides studying your code to learn these cool techniques. I know you usually don’t reply but it’s worth a shot. Any books/websites, etc would be very useful to understanding how you do what you do!

    • Thanks for the feedback. Can you tell me what OS you’re on? Somebody else already mentioned that.. On Mac and Windows 7 it looks fine. Cheers, ML

  4. Really awesome, Drop-down menu, I have bookmarked this page for some of my projects. AWESOME.

  5. I LOVE this article and I love the designs of the drop down menu. Your site/blog is always inspiring and helpful. I love coming to your site =)

  6. Can it is possible to function like select box, i mean when we click on the page the select box will collapse automatically … Pls do so if possible

  7. A jQuery plugin for transforming select inputs into drop-down lists with unique efffects are really amazing.Its a great idea to create drop down list.THANKS to sharing with us

  8. Without a doubt, Codrops is THE site for CSS3 and jQuery effects.

    Apart from the cutting-edge techniques, the UIs created for the tutorials are always top-level.

    In a word: amazing.

  9. Sem dúvida esse e o melhor blog, parabéns MARY LOU pelo tutorial.
    (Undoubtedly this blog and the best, congratulations MARY LOU by tutorial)

  10. Hello Mary Lou, first, thank you so much for your script, it’s really excellent! I’v loved the effects, but could you please tell me if it’s possible to us create a LINK in place to a ? Cos I would like to use it in a login menu with the options “My Profile”, “Logoff”… .
    I was trying to input some javascript in the but it doesn’t work, so could you please help me friend? Thank you again, best regards, Raid