纯css html 真实水滴效果

惯例,不多说直接上图

纯css html 真实水滴效果_第1张图片

秉承着开源精神,我们将这段代码无私地分享给大家,因为我们深信,信息的共享和互相学习是推动科技进步的关键。我们鼓励大家在使用这段代码的同时,也能够将其中的原理、思想和经验分享给更多的人。

这份代码是我们团队用心血和时间换来的,我们希望它能成为大家在解决问题和创新探索中的一种工具。它可能并不完美,也可能还有许多需要改进的地方,但我们相信,通过大家的共同努力,它可以成为一种强大的力量,推动着科技的发展和社会的进步。

我们期待着大家的反馈和建议,因为只有这样,我们才能不断改进和提高。同时,我们也呼吁大家能够尊重这份代码,不要随意修改或盗用,让我们共同维护好这份宝贵的开源精神。

最后,再次感谢大家对我们的支持和信任。我们将继续努力,为大家带来更多优秀的开源项目和更好的服务。让我们一起携手前行,共同创造一个更加美好的未来!

DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8" />
  <title>whatertitle>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background: #edeeed;
    }

    body>div {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    body>div>div {
      position: absolute;
      width: 150px;
      height: 150px;
      background: transparent;
      border-radius: 57% 43% 37% 63% / 45% 52% 48% 55%;
      box-shadow: inset 10px 10px 10px rgba(0, 0, 0, 0.05),
        15px 25px 10px rgba(0, 0, 0, 0.1), 15px 20px 20px rgba(0, 0, 0, 0.05),
        inset -10px -10px 15px rgba(255, 255, 255, 0.9);
    }

    body>div>div::before {
      content: "";
      position: absolute;
      top: 25px;
      left: 35px;
      background: #fff;
      width: 20px;
      height: 20px;
      border-radius: 42% 58% 37% 63% / 40% 43% 57% 60%;
    }

    body>div>div::after {
      content: "";
      position: absolute;
      top: 25px;
      left: 65px;
      background: #fff;
      width: 10px;
      height: 10px;
      border-radius: 57% 43% 37% 63% / 48% 37% 63% 52%;
    }

    body>div>div:nth-child(2) {
      transform: scale(0.5) translate(-200px, 180px);
      border-radius: 64% 36% 42% 58% / 42% 37% 63% 58%;
    }

    body>div>div:nth-child(3) {
      transform: scale(0.5) translate(280px, 10px);
      border-radius: 49% 51% 42% 58% / 56% 47% 53% 44%;
    }

    body>div>div:nth-child(4) {
      transform: scale(0.5) translate(120px, -350px);
      border-radius: 39% 61% 63% 37% / 77% 47% 53% 23%;
    }

    body>div>div:nth-child(5) {
      transform: scale(0.3) translate(20px, -350px);
      border-radius: 37% 63% 64% 36% / 53% 65% 35% 47%;
    }

    body>div>div:nth-child(6) {
      transform: scale(0.7) translate(-150px, -200px);
      border-radius: 37% 63% 64% 36% / 53% 65% 35% 47%;
    }

    body>div>div:nth-child(7) {
      transform: scale(0.4) translate(-400px, -100px);
      border-radius: 37% 63% 64% 36% / 53% 65% 35% 47%;
    }
  style>
head>

<body>
  <div>
    <div>div>
    <div>div>
    <div>div>
    <div>div>
    <div>div>
    <div>div>
    <div>div>
  div>
body>

html>

你可能感兴趣的:(js拒绝者联盟,css,css3,前端,js拒绝者联盟,css样式,css水滴样式,纯css)