CSS3动画——飞行的小精灵

CSS3动画——飞行的小精灵

今天的这段代码通过多层结构、渐变色、圆角、多种动画效果以及细节处理,成功地创造了一个充满活力和趣味性的飞行小精灵动画效果。
效果如下:

飞行的小精灵

源代码如下:

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>飞行的小精灵</title><style>* {padding: 0;margin: 0;}body {background-color: rgb(15, 17, 29);width: 100%;overflow: hidden;}div {width: 150px;height: 150px;}ul {display: block;width: 100%;height: 100%;font-size: 0px;}/* 最外层容器 */.container {translate: 0 50%;margin: 0 auto;width: 100%;height: 300px;}.main-container {position: relative;width: 100%;height: 100%;}/* 外层紫色盒子 */.first {margin: 0 auto;translate: 0 50%;/* border: 1px solid #fff; */box-shadow: 5px 5px 10px 5px rgba(80, 72, 160, 0.9) 30%, rgb(126, 117, 224, 0.5);}/* 紫色拖尾 */.first ul li {width: 100%;height: 25%;border-top-right-radius: 15px;border-bottom-right-radius: 15px;animation: first .7s ease-in-out infinite alternate;background-image: linear-gradient(to right, rgba(80, 72, 160, 0.9) 30%, rgb(126, 117, 224, 0.5));mask-image: linear-gradient(to right, rgba(80, 72, 160, 0.9) 70%, transparent);}.first ul li:nth-child(1) {animation-delay: .3s;}.first ul li:nth-child(2) {animation: first 2s 0.4s ease-out infinite alternate;}.first ul li:nth-child(3) {animation: first 1.5s 0.3s ease-out infinite alternate;}.first ul li:nth-child(4) {animation-delay: .5s;}@keyframes first {0% {width: 60%;opacity: 1;}100% {width: 140%;}}.first::before {content: '';position: absolute;left: -50%;width: 50%;height: 100%;border-top-left-radius: 75px;border-bottom-left-radius: 75px;background-color: rgba(80, 72, 160, 0.9);box-shadow: -2px 0 5px rgba(80, 72, 160, 0.7);}/* 第二层 */.second {margin: 0 auto;translate: 0 -50%;height: 130px;}.second ul li {height: 25%;width: 100%;background-color: rgba(133, 237, 232, 0.6);border-top-right-radius: 15px;border-bottom-right-radius: 15px;animation: second .6s ease-out infinite alternate;mask-image: linear-gradient(to right, #85EDE8 50%, transparent);}.second ul li:last-child {translate: 0 200%;animation-delay: 0.4s;}@keyframes second {0% {width: 80%;}100% {width: 130%;}}.second::before {content: '';position: absolute;left: -65px;width: 50%;height: 100%;border-top-left-radius: 75px;border-bottom-left-radius: 75px;background: #85EDE8;box-shadow: -2px 0 5px rgba(133, 237, 232, 0.7);}/* 第三层 */.third {position: relative;margin: 0 auto;translate: 0 -205px;}.third ul li {width: 100%;height: 10%;border-top-right-radius: 7.5px;border-bottom-right-radius: 7.5px;background-color: rgb(133, 237, 232);animation: third 1s infinite alternate;box-shadow: 0 0 5px rgba(133, 237, 232, 0.5);}.third .top {position: absolute;top: 10px;left: 0;}.third .bottom {position: absolute;bottom: 10px;left: 0;}.third ul li:nth-child(1) {animation-delay: 0.7s;}.third ul li:nth-child(2) {width: 25px;height: 15px;border-radius: 50px;animation: third-1 1.5s ease-out infinite;}.third ul li:nth-child(4) {width: 15px;border-radius: 50px;animation: third-1 1.5s ease-out infinite;}.third ul li:nth-child(3) {width: 50px;border-radius: 50px;animation: third-2 1s 0.1s ease-out infinite;}.third ul li:nth-child(5) {width: 60px;border-radius: 70px;animation: third-2 1s 0.4s ease-out infinite;}@keyframes third {0% {width: 55%;}100% {width: 85%;}}@keyframes third-1 {0% {left: 35px;}80% {cpacity: 0.7;}100% {left: 200px;opacity: 0;}}@keyframes third-2 {0% {left: 35px;}80% {cpacity: 0.7;}100% {left: 200px;opacity: 0;}}.third::before {content: '';position: absolute;top: 25px;left: -50px;width: 70px;height: 100px;border-top-left-radius: 65px;border-bottom-left-radius: 65px;background-color: #fff;}/* 面部的图案,待会儿取消注释*/.fourth {position: relative;width: 100px;height: 100px;background-color: transparent;margin: 0 auto;/* 因为前面的div盒子撑起来了 */translate: -25px -330%;background-color: #fff;}.fourth .eyes {position: absolute;top: 40px;left: 0px;width: 10px;height: 10px;border-radius: 50%;background-color: #000;}.eyes::after {content: "";position: absolute;top: 0;left: 30px;width: 10px;height: 10px;border-radius: 50%;background-color: #000;}.checks {position: absolute;top: 52px;left: -10px;width: 10px;height: 10px;border-radius: 50%;background-color: rgb(133, 237, 232);}.checks::after {content: "";position: absolute;top: 0;left: 50px;width: 10px;height: 10px;border-radius: 50%;background-color: rgb(133, 237, 232);}.smile {position: absolute;top: 53px;left: 8px;width: 20px;height: 10px;border: 3px solid #000;border-bottom-left-radius: 90px;border-bottom-right-radius: 90px;}/* 嘴型的设置 */.smile::after {content: "";position: absolute;top: -5px;left: -5px;width: 30px;height: 7px;background-color: #fff;}/* 设置动画条 */.fourth ul li {position: absolute;width: 100%;height: 15px;background-color: #fff;left: 1px;}.fourth ul .odd {border-top-right-radius: 50px;border-bottom-right-radius: 50px;}.fourth ul .even {background: radial-gradient(circle at 100% 50%, transparent 15px, #fff 18px);}.fourth ul li:nth-child(1) {top: 0px;animation: fourth-1 1s ease-in-out infinite alternate;}.fourth ul li:nth-child(2) {top: 12px;height: 17px;animation: fourth-2 1s 0.2s ease-in-out infinite alternate;filter: blur(1px);}.fourth ul li:nth-child(3) {top: 27px;animation: fourth-3 1s 0.4s ease-in-out infinite alternate;}.fourth ul li:nth-child(4) {top: 41px;height: 17px;animation: fourth-4 1s 0.6s ease-in-out infinite alternate;}.fourth ul li:nth-child(5) {bottom: 28px;animation: fourth-5 1s 0.6s ease-in-out infinite alternate;}.fourth ul li:nth-child(6) {bottom: 14px;animation: fourth-6 01s 0.6s ease-in-out infinite alternate;}.fourth ul li:nth-child(7) {bottom: 0px;animation: fourth-7 1s 0.6s ease-in-out infinite alternate;}@keyframes fourth-1 {0% {width: 120%;}100% {width: 140%;}}@keyframes fourth-2 {0% {width: 120%}100% {width: 125%;}}@keyframes fourth-3 {0% {width: 130%;}100% {width: 150%;}}@keyframes fourth-4 {0% {width: 125%;}100% {width: 140%;}}@keyframes fourth-5 {0% {width: 120%;}100% {width: 150%;}}@keyframes fourth-6 {0% {width: 120%;}100% {width: 130%;}}@keyframes fourth-7 {0% {width: 130%;}100% {width: 155%;}}@keyframes fourth-8 {0% {width: 155%;}100% {width: 165%;}}</style>
</head><body><div class="container"><div class="main-container"><!-- 外层紫色 --><div class="first"><ul><li></li><li></li><li></li><li></li></ul></div><!-- 第二层浅蓝 --><div class="second"><ul><li></li><li></li></ul></div><!-- 第三层稍微深的蓝色 --><div class="third"><ul><li class="top"></li><li class="top"></li><li class="top"></li><li class="bottom"></li><li class="bottom"></li><li class="bottom"></li></ul></div><!-- 内层图案 --><div class="fourth"><ul><li class="odd"></li><li class="even"></li><li class="odd"></li><li class="even"></li><li class="odd"></li><li class="even"></li><li class="odd"></li><li class="even"></li></ul><!-- 面部图像 --><span class="eyes"></span><span class="checks"></span><span class="smile"></span></div></div><div class=" flying-starts"></div></div>
</body></html>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/52818.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

探索Edge-TTS与WebSocket集成:打造实时语音交互系统

本文为实现 WebSocket 将文本转换为语音并返回 Base64 数据给 Vue 客户端【干货】 在本文中&#xff0c;我们将构建一个简单的系统&#xff0c;该系统能够接收文本输入&#xff0c;通过 Microsoft Edge 的文本到语音服务&#xff08;Edge TTS&#xff09;转换为语音&#xff0c…

【第十三届蓝桥杯单片机国赛满分代码】

其他相关文章&#xff1a; 【提分必看&#xff01;】蓝桥杯单片机提分技巧&#xff08;国一经验分享&#xff09; 【国一超全代码分享&#xff01;】蓝桥杯单片机各模块代码整合 【蓝桥杯单片机客观题知识点汇总】 本代码经过编译后生成的hex文件经过了4T测试平台的满分测试。读…

python从入门到精通:文件操作

目录 1、文件编码 2、文件的读取 open( )打开函数 3、文件的写入 4、文件的追加 5、文件的操作&#xff08;综合案例&#xff09; 1、文件编码 因为计算机只能识别0和1&#xff0c;所以我们是通过编码技术&#xff08;密码本&#xff09;将内容翻译成0和1存入&#xff0…

Clock skew

时钟偏差(有时称为时序偏差)是同步数字电路系统(如计算机系统)中的一种现象,其中由于门电路或更先进的半导体技术中导线信号传播延迟,源自同一源的时钟信号会在不同时间到达不同组件。任何两个时钟读数之间的瞬时差异被称为它们的偏差。 大多数数字电路的操作由一个周期…

C#——扩展方法

扩展方法 定义 扩展方法&#xff08;Extension Methods&#xff09;是C#中一种特殊的静态方法&#xff0c;它定义在一个静态类中&#xff0c;但是可以像实例方法一样被调用&#xff0c;使得代码更加简洁、易读。 设计目的 是为了给已有的类型添加新的行为&#xff0c;而不需要…

数学建模学习(124):使用Python实现模糊ARAS方法从原理到实战

文章目录 1. 引言2. 模糊ARAS方法原理2.1 模糊数的表示3. 案例分析:设备采购决策3.1 数据来源3.2 权重设定3.3 数据集3.4 Python实现模糊ARAS方法3.5 结果分析3.6 模糊ARAS的优势3.7 应用场景4. 总结参考文献1. 引言 在复杂的决策场景中,决策者往往面对的不仅仅是多个选择(…

Android APK打包脚本

build.gradle版本 同目录创建config.gradle文件写入需要的信息入 config.gradle文件内容 ext { /*** 自定义APP运行环境* dev: 开发* test: 测试* pro: 生产*/ env "pro" /*** 动态参数配置&#xff0c;根据自己需要添加参数* APP_ID: 包名* VERSION_CODE: 版本号…

【C++】奇异递归模板模式CRTP——静态多态

奇异递归模板模式&#xff08;Curiously Recurring Template Pattern&#xff0c;CRTP&#xff09;是C模板编程时的一种惯用法&#xff08;idiom&#xff09;&#xff1a;把派生类作为基类的模板参数。更一般地被称作F-bound polymorphism。CRTP在C中主要有两种用途&#xff1a…

在高质量视频生成文本、图像生成文本的GLM-4V-Plus技术加持下医疗未来的方向

人工智能的进步为医疗领域带来了巨大的变革&#xff0c;尤其是视频生成文字、图片生成文字和医学统计数据生成文字等技术的应用。这些技术使得我们能够更全面地利用大数据来辅助诊断&#xff0c;为患者提供更加精确和个性化的医疗服务。以下是一些可能的应用场景和优势&#xf…

国产网卡品牌崛起,做好网络信息安全的“守门人”

在信息技术日新月异的时代背景下&#xff0c;信息安全不仅关乎个人隐私保护&#xff0c;更是国家安全与经济发展的基石。LR-LINK联瑞凭借其前瞻性的视野和深厚的研发实力&#xff0c;成功自主研发出全国产化的FPGA&#xff08;现场可编程门阵列&#xff09;网闸隔离卡方案&…

优质企业上网行为管理软件大盘点

员工在上班时间摸鱼&#xff0c;看似是一个小问题&#xff0c;但却会给企业带来诸多不良影响。首先&#xff0c;摸鱼会降低员工的工作效率&#xff0c;导致工作任务无法按时完成&#xff0c;影响项目进度。其次&#xff0c;摸鱼行为会破坏企业的工作氛围&#xff0c;影响其他员…

零基础学习Python(七)

1. 字符串常用方法 lower()、upper()&#xff1a;转换为小写字符串、大写字符串 split(str)&#xff1a;按照指定字符串str进行分割&#xff0c;结果为列表&#xff1a; email "123qq.com" print(email.split("")) [123, qq.com] count(str)&#xf…

Linux 安装Mysql保姆级教程

一、检查环境 我们登录服务器&#xff0c;查看之前是否安装过mysql rpm -qa | grep mysql 由于我之前安装过&#xff0c;所以这里是有数据的 如果需要删除重新下载&#xff0c;可以使用 rpm -e mysql57-community-release-el7-10.noarch.rpm 二、安装 1、下载 接下来下载安装…

Hive SQL

一、基本数据类型 tinyint 1byte 有符号整数 smallint 2byte 有符号整数 int 4byte 有符号整数 bigint 8byte 有符号整数 boolean 布尔类型&#xff0c;true或者false float 单精度浮点数 double 双精度浮点数 decim…

电脑C盘临时文件怎么清理?

在解决“C盘临时文件怎么清理&#xff1f;”的问题前&#xff0c;先来一起了解一下清理C盘临时文件的原因&#xff1a; 释放磁盘空间&#xff1a;临时文件可以占用大量磁盘空间&#xff0c;尤其是在长时间未清理的情况下&#xff0c;清理这些文件可以释放空间。提高系统性能&a…

gaussian grouping训练自定义数据集

gaussian grouping是一个语义分割3DGS的方法。 它在每个3DGS点云中加入一个叫Identity Encoding的特征向量&#xff0c; 在渲染时把特征向量渲染到2D图像&#xff0c;每个像素位置为一个特征向量&#xff0c;使用额外的线性分类层对每个2D位置的特征向量分类。得到mask。 这个m…

Python——模块和包

模块 Python的模块&#xff08;Modules&#xff09;是Python程序的重要组成部分&#xff0c;它们允许你将代码分解成可重用的单元。每个模块都是一个包含Python代码的文件&#xff0c;文件名就是模块名加上.py后缀。模块可以定义函数、类和变量&#xff0c;也可以包含可执行的…

sheng的学习笔记-AI-半监督聚类

AI目录&#xff1a;sheng的学习笔记-AI目录-CSDN博客 半监督学习&#xff1a;sheng的学习笔记-AI-半监督学习-CSDN博客 聚类&#xff1a;sheng的学习笔记-AI-聚类(Clustering)-CSDN博客 均值算法&#xff1a;sheng的学习笔记-AI-K均值算法_k均值算法怎么算迭代两次后的最大…

突发!Runway 从 HuggingFace 及 GitHub 上删库跑路,背后有何隐情?

突发&#xff01;2024年8月29日Runway 从 HuggingFace 及 GitHub 上删库跑路&#xff0c;背后有何隐情&#xff1f; &#x1f9d0; 今天我们来聊一聊科技圈一则爆炸性消息&#xff1a;Runway ML 从 HuggingFace 和 GitHub 上删库跑路&#xff0c;毫无预警&#xff01;这个举动…

Java大文件上传方案(vue+饿了么):秒传、断点续传、分片上传!

前言 本篇文章是基于其他文章的基础上结合自己的理解写出来的,如果哪里有问题请指出! 详细教程 秒传 1、什么是秒传 通俗的说&#xff0c;你把要上传的东西上传&#xff0c;服务器会先做MD5校验&#xff0c;如果服务器上有它就会进入秒传&#xff0c;想要不秒传&#xff0…