如何使用纯CSS实现抽象的水波荡漾的动画(附源码)
程序员文章站
2022-04-02 14:01:34
...
本篇文章给大家带来的内容是关于如何使用纯CSS实现抽象的水波荡漾的动画(附源码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
效果预览
源代码下载
https://github.com/comehope/front-end-daily-challenges
代码解读
定义 dom,容器中包含 9 个元素:
<div class="container"> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> </div>
居中显示:
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background-color: black; }
定义容器尺寸:
.container { width: 30em; height: 30em; font-size: 10px; }
用 grid 布局把 9 个子元素排列成 3 * 3 的网格状:
.container { display: grid; grid-template-columns: repeat(3, 1fr); }
设置容器内子元素的样式,是通过伪元素来设置的:
.container span { position: relative; } .container span::before, .container span::after { content: ''; position: absolute; box-sizing: border-box; border-style: none solid solid none; border-width: 1em; border-color: gold; width: 100%; height: 100%; }
旋转容器,让它的尖端朝上:
.container { transform: rotate(-135deg); }
增加子元素尺寸由小到大变化的动画:
.container span::before, .container span::after { animation: animate-scale 1.6s linear infinite; } @keyframes animate-scale { from { width: 1%; height: 1%; } to { width: 100%; height: 100%; } }
增加子元素边框色变化的动画:
.container span::before, .container span::after { animation: animate-border-color 1.6s linear infinite, animate-scale 1.6s linear infinite; } @keyframes animate-border-color { 0%, 25% { border-color: tomato; } 50%, 75% { border-color: gold; } 100% { border-color: black; } }
增加子元素边框宽度变化的动画:
.container span::before, .container span::after { animation: animate-border-width 1.6s linear infinite, animate-border-color 1.6s linear infinite, animate-scale 1.6s linear infinite; }
最后,让 ::after
伪元素的动画时间慢半拍:
.container span::after { animation-delay: -0.8s; } @keyframes animate-border-width { 0%, 100%{ border-width: 0.1em; } 25% { border-width: 1.5em; } }
大功告成!
以上就是如何使用纯CSS实现抽象的水波荡漾的动画(附源码)的详细内容,更多请关注其它相关文章!
上一篇: vue实现仿今日头条首页选项卡的功能
下一篇: 通过Python3实现任务的定时循环执行
推荐阅读
-
纯CSS3编写的的精美动画进度条(无flash/无图像/无脚本/附源码)
-
如何使用CSS实现眼冒金星的动画效果(附源码)
-
css3 | 中的animation/@keyframes xz动画效果-如何使用纯css实现动画效果? 用法:animation:xz 3s 2 4s alternate; 参数:animati
-
css如何实现水纹扩散的动画效果(纯代码)
-
如何使用纯css实现手机通讯录的效果
-
如何使用纯CSS实现一块乐高积木(附源码)
-
如何使用纯CSS实现一把雨伞开合的动画效果(附源码)
-
如何使用css3实现文字的单阴影效果和多重阴影效果(附完整代码)
-
使用纯CSS3实现多层云彩变换飞行动画的示例代码分享
-
如何使用纯CSS实现苹果系统的相册图标(代码)