1. ホーム
  2. Web制作
  3. CSS

[CSSチュートリアル】ピュアCSSでロウソクの溶ける(水滴)を実現するサンプルコード

2022-02-02 18:46:37

効果の実現

実装のアイデア

フィルターフィルタのコントラストとぼかしを利用して、溶けるような効果を実現しました。
親要素にコントラスト、子要素にぼかしを設定することで、ぼかし効果を実現しています。

コード

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>waterdrop effect</title>
  <link rel="stylesheet" type="text/css" href="css/index.css">
</head>
<body>
  <div class="hpc">Rain collection shirt</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;
    }
  }
}


SCSSをCSSに変換してインポートするだけです。

純粋なCSSロウソク溶かし(水滴)サンプルコードの記事はこれで終わりです、もっと関連するCSSロウソク溶かしコンテンツは、スクリプトハウスの過去の記事を検索するか、以下の関連記事を引き続きご覧ください、今後ともスクリプトハウスをよろしくお願いします。