Home Web Front-end CSS Tutorial Create a modern card style: the latest use of CSS properties

Create a modern card style: the latest use of CSS properties

Nov 18, 2023 am 08:43 AM
card style Trendy application of css modern programming

Create a modern card style: the latest use of CSS properties

Create a modern card style: the trendy use of CSS properties

In modern web design, card style is a common and popular design pattern. Cards can be used to display various content, such as images, text, links, etc., making the web page more layered and tidy. In order to make the card style more modern, we can use some trendy CSS properties to add unique effects and animations to the card. This article will introduce the use of some trendy CSS properties and provide specific code examples.

1. Shadow effect

The shadow effect is to give the card a sense of three-dimensionality and depth, which can be achieved using the box-shadow attribute. box-shadowAttributes can set the color, position, blur, etc. of the shadow. The following is a sample code:

.card {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}
Copy after login

In the above code, the first parameter 0px of box-shadow represents the offset of the horizontal position, and the second parameter 2px represents the offset of the vertical position, the third parameter 6px represents the blur of the shadow, and the fourth parameter rgba(0, 0, 0, 0.2) represents the color and transparency of the shadow.

2. Animation effects

Adding animation effects can make the cards more vivid and attractive. CSS provides the transition attribute to implement card transition animation. The following is a sample code:

.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.1);
}
Copy after login

In the above code, the transition attribute sets the transform attribute to a transition time of 0.3 seconds, and uses easeFunction to control the speed of transition. When the mouse is hovering over the card, transform: scale(1.1) is used to enlarge the card 1.1 times, achieving a simple transition animation effect.

3. Background gradient

Using background gradient can add a modern visual effect to the card. CSS provides the background-image attribute and the linear-gradient() function to achieve gradient effects. The following is a sample code:

.card {
  background-image: linear-gradient(to right, #f44336, #2196f3);
}
Copy after login

In the above code, the linear-gradient() function accepts two or more parameters, separated by commas. The first parameter of the function to right represents the direction of the gradient, here it means from left to right. The second parameter #f44336 represents the starting color of the gradient, and the third parameter #2196f3 represents the ending color of the gradient.

4. Filter effects

Using filter effects can add some special visual effects to the card. CSS provides filter attributes to achieve various filter effects, such as blur, saturation, transparency, etc. The following is a sample code:

.card {
  filter: brightness(0.8) blur(2px);
}
Copy after login

In the above code, the filter attribute uses two filter effects, namely brightness(0.8) and blur (2px). brightness(0.8) reduces the card’s brightness to 80%, while blur(2px) blurs the card by 2 pixels.

5. Transformation effect

Using the transformation effect can give the card a unique shape and perspective effect. CSS provides transform attributes to achieve various transformation effects, such as rotation, scaling, tilt, etc. The following is a sample code:

.card {
  transform: perspective(1000px) rotateY(20deg);
}
Copy after login

In the above code, the transform attribute uses two transformation effects, namely perspective(1000px) and rotateY( 20deg). perspective(1000px) sets the perspective effect, while rotateY(20deg) rotates the card 20 degrees clockwise around the Y axis.

By using the above-mentioned trendy CSS properties, we can create a variety of modern card styles. Of course, this is just a part of the sample code, and the actual application can be cleverly combined and adjusted as needed. I hope these sample codes can provide you with some ideas and inspiration.

(Note: The above example code is only used to demonstrate the use of CSS properties, not the complete HTML and CSS code. Appropriate adjustments need to be made as needed for actual application.)

The above is the detailed content of Create a modern card style: the latest use of CSS properties. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Vue 3 Vue 3 Apr 02, 2025 pm 06:32 PM

It's out! Congrats to the Vue team for getting it done, I know it was a massive effort and a long time coming. All new docs, as well.

Can you get valid CSS property values from the browser? Can you get valid CSS property values from the browser? Apr 02, 2025 pm 06:17 PM

I had someone write in with this very legit question. Lea just blogged about how you can get valid CSS properties themselves from the browser. That's like this.

A bit on ci/cd A bit on ci/cd Apr 02, 2025 pm 06:21 PM

I'd say "website" fits better than "mobile app" but I like this framing from Max Lynch:

Stacked Cards with Sticky Positioning and a Dash of Sass Stacked Cards with Sticky Positioning and a Dash of Sass Apr 03, 2025 am 10:30 AM

The other day, I spotted this particularly lovely bit from Corey Ginnivan’s website where a collection of cards stack on top of one another as you scroll.

Using Markdown and Localization in the WordPress Block Editor Using Markdown and Localization in the WordPress Block Editor Apr 02, 2025 am 04:27 AM

If we need to show documentation to the user directly in the WordPress editor, what is the best way to do it?

Comparing Browsers for Responsive Design Comparing Browsers for Responsive Design Apr 02, 2025 pm 06:25 PM

There are a number of these desktop apps where the goal is showing your site at different dimensions all at the same time. So you can, for example, be writing

Why are the purple slashed areas in the Flex layout mistakenly considered 'overflow space'? Why are the purple slashed areas in the Flex layout mistakenly considered 'overflow space'? Apr 05, 2025 pm 05:51 PM

Questions about purple slash areas in Flex layouts When using Flex layouts, you may encounter some confusing phenomena, such as in the developer tools (d...

How to Use CSS Grid for Sticky Headers and Footers How to Use CSS Grid for Sticky Headers and Footers Apr 02, 2025 pm 06:29 PM

CSS Grid is a collection of properties designed to make layout easier than it’s ever been. Like anything, there's a bit of a learning curve, but Grid is

See all articles