Cara menggunakan top down animation css

Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:list-disc to only apply the list-disc utility on hover.

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:list-disc to apply the list-disc utility at only medium screen sizes and above.

To learn more, check out the documentation on Responsive Design, Dark Mode and .

Using custom values

Customizing your theme

By default, Tailwind provides three utilities for the most common list style types. You change, add, or remove these by editing the theme.listStyleType section of your Tailwind config.

module.exports = { theme: { listStyleType: { none: 'none', disc: 'disc', decimal: 'decimal', square: 'square', roman: 'upper-roman', } } }

Learn more about customizing the default theme in the documentation.

Arbitrary values

If you need to use a one-off list-style-type value that doesn’t make sense to include in your theme, use square brackets to generate a property on the fly using any arbitrary value.

In this post, you'll learn how to make great user interfaces using only HTML and CSS by adding a slide-down animation into your CSS code.

by

Joseph Zimmerman

·

Aug. 30, 18 · Tutorial

Like

Comment

Save

Tweet

Share

350.74K Views

Join the DZone community and get the full member experience.

Join For Free

Sometimes something seems like it should be really easy, but it turns out to be extremely difficult. The case we'll be checking out today is creating a slide-down animation using purely CSS. What could be so hard about that, right? 

What Are We Talking About?

If you're not sure what I mean by a "slide-down animation," check out the slideDown method from jQuery. This function will take a hidden element and make it visible by increasing the element's height from 0 to whatever the height of the element should be. That shouldn't be too hard, right?

How You Might Try to Do It

Let's take a look at some quick ideas of how you might expect to be able to do this easily. If you simply go by what I said earlier, you'd just set the height to 0, and then to expand it, set the height to the number that shows the whole element (with a transition as well; this is assumed for all of them, otherwise it won't be an animation). Something like this:

See the Pen <a href="//codepen.io/joezimjs/pen/NygYJy/">Pure CSS Slide Down Animation 0</a> by Joe Zim (<a href="//codepen.io/joezimjs">@joezimjs</a>) on <a href="//codepen.io">CodePen</a>.

Note: This is using :target and links to activate the animations, so the lnks aren't toggles. You'll need to go back in the frame's history or press "Rerun" to toggle them off. 

Note that it works perfectly! Problem solved right? Yes and no. This works perfectly if you know the height of the element, but what if you don't know the height? We'll need a generic animation that will work no matter what height the element is. This is especially true on a responsive site, where the height can change depending on screen size.

In this case, the seemingly obvious solutions is to just set the height to auto in the expanded version's styles.

See the Pen <a href="//codepen.io/joezimjs/pen/qxjYqN/">Pure CSS Slide Down Animation 1</a> by Joe Zim (<a href="//codepen.io/joezimjs">@joezimjs</a>) on <a href="//codepen.io">CodePen</a>.

Oh how I wish this worked. This would make everything so much easier, but sadly transitions only work on numeric values. Sure, auto does eventually compute to a numeric value, but that message doesn't seem to get to transition, so it just pops right open instead of doing a nice animation.

So what can we do? How about CSS Transforms? We'll set scaleY to zero and then set it to one when it should be expanded. Will that work?

See the Pen <a href="//codepen.io/joezimjs/pen/zRzjzG/">Pure CSS Slide Down Animation 2</a> by Joe Zim (<a href="//codepen.io/joezimjs">@joezimjs</a>) on <a href="//codepen.io">CodePen</a>.

When you use a transform, it doesn't actually change the amount of space it takes up, so there are big gaps between the links instead of making that area appear at the same time the element starts expanding. So this isn't working either. So how about we take a look at the method that I discovered.

The Answer

See the Pen <a href="//codepen.io/joezimjs/pen/bLRMom/">Pure CSS Slide Down Animation 3</a> by Joe Zim (<a href="//codepen.io/joezimjs">@joezimjs</a>) on <a href="//codepen.io">CodePen</a>.

The answer is to set everything that can affect height (e.g. vertical padding, line-height, etc.) to 0 and then set it to the value you'd like when expanded. You need to be careful with this because there are lots of things that can affect height. For example, if there were multiple paragraphs of text inside the element, you'd need to adjust the margins between those paragraphs. If you have any images, you'll need to make sure the height and vertical margins around it are also set to 0. This works better than just using height since you're far more likely to know the values of each of these properties than you are to know the height of the expandable element.

Note: I also set the text color to toggle between transparent and black to give it a fading look. This is not necessary, but looks a little nicer. You can also accomplish this with height0.

Conclusion

I've spent days trying to figure this out in the past. There just had to be a way! But aside from using JavaScript, which is also pretty complicated, I just couldn't figure it out for the longest time. Now that I have it figured out, I hope it can help you as well. God bless and happy coding!

Postingan terbaru

LIHAT SEMUA