Pure CSS to achieve candle melting (water droplets) sample code

Pure CSS to achieve candle melting (water droplets) sample code

Achieve results

When it rains, collect your clothes

Implementation ideas

The melting effect is achieved using the contrast and blur of the filfilter.
Setting contrast in the parent element and blur in the child element can achieve the effect of blending the two.

Code

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Water drop effect</title>
  <link rel="stylesheet" type="text/css" href="css/index.css">
</head>
<body>
  <div class="hpc">Put away your clothes when it rains</div>
</body>
</html>
html,body{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  filter:contrast(20);
}


.both{
  left: 0;
  content: "";
  width: 10px;
  height: 20px;
  bottom: -20px;
  border-radius: 50%;
  position: absolute;
  background-color: #fff;
}
.hpc{
  top: 80px;
  left: 100px;
  color: #fff;
  width: 400px;
  height: 107px;
  font-size: 6rem;
  filter: blur(3px);
  font-style: italic;
  position: relative;
  transform: skewY(5deg);
  font-family: "Comic Sans MS";
  border-bottom: 10px solid #fff;

  &::before{
    @extend .both;
    animation: move 6s ease-in-out infinite;
  }

  &::after{
    @extend .both;
    animation: move 6s 1s ease-in-out infinite;
  }

  @keyframes move{
    70%
      bottom: -20px;
      transform: translate(380px, 5px);
    }
    80%
      transform: translate(380px, 3px);
      opacity: 1;
    }
    100%{
      transform: translate(380px, 180px);
      opacity: 0;
    }
  }
}

Just convert SCSS to CSS and import it.

This concludes this article about the sample code for implementing candle melting (water drops) with pure CSS. For more relevant CSS candle melting content, please search 123WORDPRESS.COM’s previous articles or continue browsing the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  A brief discussion on when MySQL uses internal temporary tables

>>:  Hbase installation and configuration tutorial under Linux

Recommend

Element table header row height problem solution

Table of contents Preface 1. Cause of the problem...

Graphical steps of zabbix monitoring vmware exsi host

1. Enter the virtualization vcenter, log in with ...

Docker starts MySQL configuration implementation process

Table of contents Actual combat process Let's...

Vue network request scheme native network request and js network request library

1. Native network request 1. XMLHttpRequest (w3c ...

About dynamically adding routes based on user permissions in Vue

Display different menu pages according to the use...

How to build YUM in Centos7 environment

1. Enter the configuration file of the yum source...

Analysis of the principle of Vue nextTick

Table of contents Event Loop miscroTask (microtas...

Explanation and example usage of 4 custom instructions in Vue

Four practical vue custom instructions 1. v-drag ...

Several common methods for passing additional parameters when submitting a form

When submitting a form, you may encounter situatio...

Ubuntu20.04 VNC installation and configuration implementation

VNC is a remote desktop protocol. Follow the inst...

MySQL green version setting code and 1067 error details

MySQL green version setting code, and 1067 error ...

Real-time refresh of long connection on Vue+WebSocket page

Recently, the Vue project needs to refresh the da...