DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
  1. DZone
  2. Coding
  3. Languages
  4. Box-Shadow Transition Performance

Box-Shadow Transition Performance

One trick you can try to improve the performance of a box-shadow transition is moving the box-shadow to a pseudo-element.

Brent Graham user avatar by
Brent Graham
·
May. 07, 17 · Tutorial
Like (1)
Save
Tweet
Share
8.44K Views

Join the DZone community and get the full member experience.

Join For Free

Adding a CSS transition to animate the box-shadow of an element is a handy trick.

It's a design technique that's often used on hover to highlight something. If you've used this effect you might have noticed that sometimes the performance can be suboptimal making the animation slow.

One trick you can try to improve the performance is moving the box-shadow to a pseudo-element.

Slower

Direct transition of the box-shadow property:

.box-shadow {  
  box-shadow: 0 3px 5px 0 rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease-in-out;
}
.box-shadow:hover {  
  box-shadow: 0 5px 15px 2px rgba(0, 0, 0, 0.1);
}

Faster

Pre-render the hover state of the box-shadow with a pseudo-element and hide it by setting the opacity:0:

.box-shadow::after {  
  box-shadow: 0 5px 15px 2px rgba(0, 0, 0, 0.1);
  opacity: 0; /* hide the hover shadow */
  transition: opacity 0.3s ease-in-out;
}

Apply the transition with the opacity property:

.box-shadow:hover::after  {  
  opacity: 1; /* show the hover shadow */
}

That's it!

Property (programming) Design CSS IT Opacity (optics) Element

Published at DZone with permission of Brent Graham. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Deploying Java Serverless Functions as AWS Lambda
  • Continuous Development: Building the Thing Right, to Build the Right Thing
  • How to Secure Your CI/CD Pipeline
  • Java Development Trends 2023

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: