Table of Contents
HTML structure
Button style
Ripples style
JavaScript implementation
Extended features
Other technologies
Pure CSS implementation
JavaScript before ES6
jQuery
React
Home Web Front-end CSS Tutorial How to Recreate the Ripple Effect of Material Design Buttons

How to Recreate the Ripple Effect of Material Design Buttons

Apr 02, 2025 am 03:34 AM

How to Recreate the Ripple Effect of Material Design Buttons

When I first met Material Design, I was impressed by the design concept of its button components. It cleverly uses the ripple effect to provide feedback to users in a simple and elegant way.

How is this effect achieved? Material Design's buttons are not just simple ripples animations, but the position of the animation will also vary according to the position of the button clicked.

We can achieve the same effect through code. First, we will use ES6 JavaScript to provide a clean solution, and then explore some alternatives.

HTML structure

Our goal is to avoid any unnecessary HTML tags, so we will use the least code:

 <button>learn more</button>

Button style

We need to dynamically set some styles of the ripples element using JavaScript, but all other styles can be done in CSS. For our button, only two properties need to be included.

 button {
  position: relative;
  overflow: hidden;
}

Using position: relative allows us to use position: absolute on ripples elements, which is necessary for us to control its position. Meanwhile, overflow: hidden prevents ripples from exceeding the edge of the button. All other properties are optional. But now, our buttons look a little dated. Here is a more modern starting point:

 /* Roboto is the default font for Material*/
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

button {
  position: relative;
  overflow: hidden;
  transition: background 400ms;
  color: #ffff;
  background-color: #6200ee;
  padding: 1rem 2rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  outline: 0;
  border: 0;
  border-radius: 0.25rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

Ripples style

Later, we will use JavaScript to use ripples as a .ripple class<span></span> Elements are injected into our HTML. But before moving to JavaScript, let's define the style of these ripples in CSS so we can use anytime:

 span.ripple {
  position: absolute; /* we mentioned above absolute positioning*/
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.7);
}

To make our ripples round, we set border-radius to 50%. To ensure that every ripples appear from scratch, we set the default scale to 0. Now, we can't see anything yet, because we haven't set values ​​for top , left , width , or height properties; we'll inject these properties soon using JavaScript.

As for our CSS, the last thing we need to add is the end state of the animation:

 @keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

Please note that we do not use from keyword to define the start state in keyframes ? We can omit from and CSS will build the missing value based on the value applied to the animation element. This happens if the relevant values ​​are explicitly declared (such as transform: scale(0) ), or they are default values ​​(such as opacity: 1 ).

JavaScript implementation

Finally, we need JavaScript to dynamically set the position and size of the ripples. The size should be based on the size of the button, and the position should be based on the position of the button and the cursor.

We will start with an empty function that takes the click event as an argument:

 function createRipple(event) {
  //
}

We will access our button by looking for currentTarget of the event.

 const button = event.currentTarget;

Next, we will instantiate ours<span></span> element and calculate its diameter and radius based on the width and height of the button.

 const circle = document.createElement("span");
const diameter = Math.max(button.clientWidth, button.clientHeight);
const radius = diameter / 2;

We can now define the remaining properties required by the ripples: left , top , width , and height .

 circle.style.width = circle.style.height = `${diameter}px`;
circle.style.left = `${event.clientX - (button.offsetLeft radius)}px`;
circle.style.top = `${event.clientY - (button.offsetTop radius)}px`;
circle.classList.add("ripple");

In<span></span> Before adding an element to the DOM, it is best to check if there are any remaining ripples that may have come from the previous click and delete them before executing the next ripples.

 const ripple = button.getElementsByClassName("ripple")[0];

if (ripple) {
  ripple.remove();
}

In the last step, we will<span></span> Append to the button element as a child element so that it is injected into the inside of the button.

 button.appendChild(circle);

After our function is finished, all that remains is to call it. This can be done in a number of ways. If we want to add ripples to each button on the page, we can use a code like this:

 const buttons = document.getElementsByTagName("button");
for (const button of buttons) {
  button.addEventListener("click", createRipple);
}

Now we have the ripple effect of working!

Extended features

What if we want to go a step further, combining this effect with other changes in button position or size? After all, customization is one of the main advantages of choosing to recreate the effects ourselves. To test the ease of the extension function, I decided to add a "magnet" effect that moves our button toward the cursor when it is within a specific area.

We need to rely on some of the same variables defined in the ripple function. To avoid unnecessary duplication of code, we should store them somewhere so that both methods can access them. But we should also limit the scope of shared variables to each individual button. One way to achieve this is to use a class as shown in the following example:

Since the magnet effect requires tracking the cursor every time the cursor moves, we no longer need to calculate the cursor position to create ripples. Instead, we can rely on cursorX and cursorY .

Two important new variables are magneticPullX and magneticPullY . They control the intensity of our magnet method pulling the button behind the cursor. So when we define the center of the ripples, we need to adjust the position (x and y) and the magnetism of the new button.

 const offsetLeft = this.left this.x * this.magneticPullX;
const offsetTop = this.top this.y * this.magneticPullY;

To apply these combination effects to all buttons, we need to instantiate a new class instance for each button:

 const buttons = document.getElementsByTagName("button");
for (const button of buttons) {
  new Button(button);
}

Other technologies

Of course, this is just one way to achieve the ripple effect. On CodePen, there are many examples that show different implementations. Here are some of my favorite examples.

Pure CSS implementation

If the user disables JavaScript, our Ripple Effect does not have any backup solution. However, using CSS only, using the :active pseudo-class to respond to clicks, you can get close to the original effect. The main limitation is that ripples can only appear from one point—usually the center of the button—and not in response to our click position. This example by Ben Szabo is particularly concise:

JavaScript before ES6

Leandro Parice's demo is similar to our implementation, but it is compatible with earlier versions of JavaScript:

jQuery

This example uses jQuery to achieve a ripple effect. If you already have jQuery as a dependency, it can help you save a few lines of code.

React

Finally, there is another example of me. While React's features such as state and refs can be used to help create ripple effects, this is not absolutely necessary. The position and size of the ripples need to be calculated for each click, so there is no advantage in keeping this information in the state. Additionally, we can access the button element from the click event, so we don't need refs either.

This React example uses the same createRipple function as the first implementation in this article. The main difference is that - as a method of Button component - our function is scoped to that component. Additionally, the onClick event listener is now part of our JSX:

This response maintains the original image formatting and avoids altering the core meaning of the text while rewarding phrases and sentences for a more natural flow and improved readability. It also uses more descriptive alt text for the images.

The above is the detailed content of How to Recreate the Ripple Effect of Material Design Buttons. 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

Undress AI Tool

Undress AI Tool

Undress images for free

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.

ArtGPT

ArtGPT

AI image generator for creative art from text prompts.

Stock Market GPT

Stock Market GPT

AI powered investment research for smarter decisions

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)

Hot Topics

How to prevent images from stretching or shrinking with CSS How to prevent images from stretching or shrinking with CSS Sep 21, 2025 am 12:04 AM

Useobject-fitormax-widthwithheight:autotopreventimagedistortion;object-fitcontrolshowimagesfillcontainerswhilepreservingaspectratios,andmax-width:100%;height:autoensuresresponsivescalingwithoutstretching.

How to create a dropdown menu with pure CSS How to create a dropdown menu with pure CSS Sep 20, 2025 am 02:19 AM

Use HTML and CSS to create drop-down menus without JavaScript. 2. Trigger the submenu display through the :hover pseudo-class. 3. Use nested lists to build a structure, and set the hidden and suspended display effects in CSS. 4. Transition animation can be added to improve the visual experience.

How to add a box shadow effect with CSS How to add a box shadow effect with CSS Sep 20, 2025 am 12:23 AM

Usethebox-shadowpropertytoadddropshadows.Definehorizontalandverticaloffsets,blur,spread,color,andoptionalinsetforinnershadows.Multipleshadowsarecomma-separated.Example:box-shadow:5px10px8pxrgba(0,0,0,0.3);createsasoftblackshadow.

How to apply a filter to an image with CSS How to apply a filter to an image with CSS Sep 21, 2025 am 02:27 AM

TheCSSfilterpropertyallowseasyimagestylingwitheffectslikeblur,brightness,andgrayscale.Usefilter:filter-function(value)onimagesorbackgroundimages.Commonfunctionsincludeblur(px),brightness(%),contrast(%),grayscale(%),saturate(%),andhue-rotate(deg).Mult

How to create gaps in a CSS Grid layout? How to create gaps in a CSS Grid layout? Sep 22, 2025 am 05:15 AM

Use the gap, row-gap or column-gap attributes to create spacing between grid items in the CSSGrid layout. Gap is the abbreviation attribute for setting row-column spacing, which can accept one or two length values. row-gap and column-gap individually control the spacing between rows and columns, and support units such as px, rem, and %.

How to use the clamp() function for responsive typography in CSS How to use the clamp() function for responsive typography in CSS Sep 23, 2025 am 01:24 AM

clamp() function realizes responsive font scaling through the minimum, preferred and maximum values; 2. The syntax is clamp (minimum value, preferred value, maximum value), and commonly used rem and vw units; 3. The font takes the minimum value on the small screen, and scales according to vw as the screen increases, and does not exceed the maximum value; 4. Reasonably select the numerical value to ensure readability and avoid being too large or too small; 5. Combining the rem type proportion to improve design consistency.

How to create a responsive square using CSS How to create a responsive square using CSS Sep 24, 2025 am 03:28 AM

Use aspect-ratio:1/1 to create a responsive square, and set the aspect ratio in modern browsers; if you need to be compatible with old browsers, you can use padding-top:100% technique to maintain the consistency of width and height by relative units; you can also use vw units to make the square change with the viewport.

How to use CSS backdrop-filter for a frosted glass effect How to use CSS backdrop-filter for a frosted glass effect Sep 24, 2025 am 01:55 AM

Use backdrop-filter:blur() to achieve the frosted glass effect, combining rgba transparent background, thin borders and rounded corners, such as .frosted-card{backdrop-filter:blur(10px);background-color:rgba(255,255,255,0.1);border:1pxsolidrgba(255,255,255,0.2);border-radius:12px;padding:20px;}, be sure to ensure that there is content behind the elements and pay attention to browser compatibility.

See all articles