search
HomeWeb Front-endCSS TutorialPure CSS to realize the battery charging animation effect of water ripples

This article will introduce to you how to skillfully use CSS to achieve the battery charging animation effect of water ripples. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

Pure CSS to realize the battery charging animation effect of water ripples

We know that the three major languages ​​​​that make up the front-end are: html, css and js, among which The most mysterious thing is css, why do you say that? Since the emergence of animation, transition and other attributes, it can be said that as long as you can’t think of it, there is nothing you can’t do ~

The previous article introduced a mobile phone charging animation effect, and I will continue it today. Compared with the previous article, The article is a bit simple, but for the sake of my girlfriend, I will write it here~

Special effects: Battery charging special effects, the overall special effects can be seen at the top

Prerequisite knowledge:

If you want to complete this special effect, you must know some prerequisite attributes. Let’s briefly introduce them:

animation , transform and filter will not be introduced in detail. Basically all animations will use these two properties. [Recommended learning: css video tutorial]

box-shadow

##box-shadow:Shadow

Usage: box-shadow: h-shadow v-shadow blur spread color inset;

  • h-shadow: required, horizontal shadow position, negative values ​​allowed
  • v-shadow: Required. The position of the vertical shadow. Negative values ​​allowed
  • blur: blur distance
  • spread: size of shadow
  • color: Shadow color
  • inset: Change the shadow from the outer shadow (at the start) to the inner shadow

border-radius

border-radius: Set rounded corners

You can set four values, which are the same as

margin and padding

That is, the order of the four values ​​​​of each radius is:

Upper left corner, Upper right corner, Lower right corner, Lower left corner .

    If the lower left corner is omitted, the upper right corner is the same.
  • If the lower right corner is omitted, the upper left corner is the same.
  • If the upper right corner is omitted, the upper left corner is the same.

linear-gradient()

linear-gradient(): Gradient, used to create a gradient that represents two or more Picture of linear gradient of colors.

Usage:

background-image: linear-gradient(direction, color-stop1, color-stop2, ...);

  • direction : Use the angle value to specify the direction (or angle) of the gradient, and specify the direction
  • color...: What colors change to what colors in sequence
Container

We set up two divs, a container at the bottom of the seat, a small lid on it, mainly set the surrounding rounded corners through

border-radius, and add box -shadowAdd shadow to enhance the three-dimensional effect

Pure CSS to realize the battery charging animation effect of water ripples##Charging effect

You can use positioning layout here and control it through

top

The position of the water. The larger the value of top, the lower the water. The smaller the value of top, the higher the water. We set the water level to 80% and pass

linear-gradient()

To set a gradient color of water:

Pure CSS to realize the battery charging animation effect of water ripples Then the animation is very simple, you only need to control the

top

value It will cause the water to rise, like this

Pure CSS to realize the battery charging animation effect of water ripplesThe points that need to be noted at this time are:

Our container at the top has rounded corners. , so when the animation reaches 100%, it should be the same as the rounded corners of the container.
  • The water level is moving. In order to enhance the three-dimensional effect, you can set a shadow, which can have a progressive effect, so the color is best slightly slightly Make it darker, and the color is better to be closer
  • Change color or pass:
  • filter: hue-rotate();
  • This attribute controls
        .content{ //容器
            border-radius: 15px 15px 5px 5px;
            &::after{
                position: absolute;
                top: 80%;
                background: linear-gradient(to bottom, #7abcff 0%, #00BCD4 44%, #2196F3 100%);
                border-radius: 0px 0px 5px 5px;
                box-shadow: 0 14px 28px rgba(33, 150, 243, 0), 0 10px 10px rgba(9, 188, 215, 0.08);
                animation: change 10s linear infinite;
                filter: hue-rotate(90deg);
            }
        }
        @keyframes change {
              30% {
                box-shadow: 0 14px 28px rgba(0, 150, 136, 0.83), 0px 4px 10px rgba(8, 117, 134, 0.4);
              }
              50%{
                filter: hue-rotate(60deg);
              }
              80% {
                top: 20%;
                border-radius: 0 0 5px 5px;
                box-shadow: 0 14px 28px rgba(6, 136, 153, 0.2), 0 10px 10px rgba(12, 10, 112, 0.08);
              }
              100% {
                  top: 0%;
                  filter: hue-rotate(0deg);
                  border-radius: 15px 15px 5px 5px;
                  box-shadow: 0 14px 28px rgba(7, 93, 104, 0), 0 10px 10px rgba(31, 3, 68, 0.4);
              }
            }

Pure CSS to realize the battery charging animation effect of water ripplesWater ripple special effect

I believe everyone has seen this special effect. The idea is to set the background color at the approximate position above, cover it with the same background color,

and then The

translate

attribute is used, by converting the x, y values, and then by constantly rotating the angle. As for why the value is this value, I can’t figure it out. clear. . . Anyone who knows can leave a message in the comment area.<pre class='brush:php;toolbar:false;'>p{ //复盖 border-radius: 45% 47% 44% 42%; transform: translate(-50%, 0); animation: move 10s linear infinite; } @keyframes move { 100% { transform: translate(-50%, -160px) rotate(720deg); } }</pre><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/image/256/812/408/1650250971855508.gif?x-oss-process=image/resize,p_40" class="lazy" title="1650250971855508.gif" alt="Pure CSS to realize the battery charging animation effect of water ripples"></p> <p>此时,我们发现这个效果并不太真实,进行多覆盖两个,改变旋转值和<code>border-radius的值来设置水面不重叠,但又有差距的效果

p{
    &:nth-child(2){
      border-radius: 38% 46% 43% 47%;
      transform: translate(-50%, 0) rotate(-135deg);
    }
    &:nth-child(3){
      border-radius: 42% 46% 37% 40%;
      transform: translate(-50%, 0) rotate(135deg);
    }
}

此时的效果就非常真实了

Pure CSS to realize the battery charging animation effect of water ripples

End

不得不说css真的很神奇,最神秘的莫过于css,喜欢的点个赞??支持下吧(● ̄(エ) ̄●)

(学习视频分享:web前端

The above is the detailed content of Pure CSS to realize the battery charging animation effect of water ripples. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
利用CSS怎么创建渐变色边框?5种方法分享利用CSS怎么创建渐变色边框?5种方法分享Oct 13, 2021 am 10:19 AM

利用CSS怎么创建渐变色边框?下面本篇文章给大家分享CSS实现渐变色边框的5种方法,希望对大家有所帮助!

css ul标签怎么去掉圆点css ul标签怎么去掉圆点Apr 25, 2022 pm 05:55 PM

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

css与xml的区别是什么css与xml的区别是什么Apr 24, 2022 am 11:21 AM

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

css3怎么实现鼠标隐藏效果css3怎么实现鼠标隐藏效果Apr 27, 2022 pm 05:20 PM

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

rtl在css是什么意思rtl在css是什么意思Apr 24, 2022 am 11:07 AM

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

css怎么设置i不是斜体css怎么设置i不是斜体Apr 20, 2022 am 10:36 AM

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

css怎么实现英文小写转为大写css怎么实现英文小写转为大写Apr 25, 2022 pm 06:35 PM

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

怎么设置rotate在css3的旋转中心点怎么设置rotate在css3的旋转中心点Apr 24, 2022 am 10:50 AM

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。

See all articles

Hot AI Tools

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.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.