探索 HTML 和 CSS 实现的蜡烛火焰

devtools/2024/11/16 22:03:18/

效果演示

这段代码是一个模拟蜡烛火焰的HTML和CSS代码。它创建了一个具有动态效果的蜡烛火焰动画,包括火焰的摆动、伸缩和光晕的闪烁。
在这里插入图片描述

HTML

html"><div class="holder"><div class="candle"><div class="blinking-glow"></div><div class="thread"></div><div class="glow"></div><div class="flame"></div></div>
</div>
  • holder:这是蜡烛的容器,用于包含蜡烛的所有元素。
  • candle:这是蜡烛的主体部分,包含了蜡烛的各个部分,如闪烁的光晕、烛芯、光晕和火焰。
  • blinking-glow:模拟蜡烛火焰周围的闪烁光晕。
  • thread:模拟蜡烛的烛芯。
  • glow:模拟蜡烛火焰底部的光晕。
  • flame:模拟蜡烛的火焰。

CSS

css">.holder {margin: 12rem auto 0;width: 150px;height: 400px;position: relative;
}.holder *, .holder *:before, .holder *:after {position: absolute;content: "";
}.candle {bottom: 0;width: 150px;height: 300px;border-radius: 150px / 40px;-webkit-box-shadow: inset 20px -30px 50px 0 rgba(0, 0, 0, 0.4), inset -20px 0 50px 0 rgba(0, 0, 0, 0.4);box-shadow: inset 20px -30px 50px 0 rgba(0, 0, 0, 0.4), inset -20px 0 50px 0 rgba(0, 0, 0, 0.4);background: #190f02;background: -webkit-gradient(linear, left top, left bottom, from(#e48825), color-stop(#e78e0e), color-stop(#833c03), color-stop(50%, #4c1a03), to(#1c0900));background: linear-gradient(#e48825, #e78e0e, #833c03, #4c1a03 50%, #1c0900);
}.candle:before {width: 100%;height: 40px;border-radius: 50%;border: 2px solid #d47401;background: #b86409;background: radial-gradient(#ffef80, #b86409 60%);background: radial-gradient(#eaa121, #8e4901 45%, #b86409 80%);
}.candle:after {width: 34px;height: 10px;left: 50%;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);border-radius: 50%;top: 14px;-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);background: radial-gradient(rgba(0, 0, 0, 0.6), transparent 45%);
}.thread {width: 6px;height: 36px;top: -17px;left: 50%;z-index: 1;border-radius: 40% 40% 0 0;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);background: #121212;background: -webkit-gradient(linear, left top, left bottom, from(#d6994a), color-stop(#4b232c), color-stop(#121212), color-stop(black), color-stop(90%, #e8bb31));background: linear-gradient(#d6994a, #4b232c, #121212, black, #e8bb31 90%);
}.flame {width: 24px;height: 120px;left: 50%;-webkit-transform-origin: 50% 100%;-ms-transform-origin: 50% 100%;transform-origin: 50% 100%;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);bottom: 100%;border-radius: 50% 50% 20% 20%;background: rgba(255, 255, 255, 1);background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, white), to(transparent));background: linear-gradient(white 80%, transparent);-webkit-animation: moveFlame 6s linear infinite, enlargeFlame 5s linear infinite;animation: moveFlame 6s linear infinite, enlargeFlame 5s linear infinite;
}.flame:before {width: 100%;height: 100%;border-radius: 50% 50% 20% 20%;-webkit-box-shadow: 0 0 15px 0 rgba(247, 93, 0, .4), 0 -6px 4px 0 rgba(247, 128, 0, .7);box-shadow: 0 0 15px 0 rgba(247, 93, 0, .4), 0 -6px 4px 0 rgba(247, 128, 0, .7);
}@-webkit-keyframes moveFlame {0%, 100% {-webkit-transform: translateX(-50%) rotate(-2deg);transform: translateX(-50%) rotate(-2deg);}50% {-webkit-transform: translateX(-50%) rotate(2deg);transform: translateX(-50%) rotate(2deg);}
}@keyframes moveFlame {0%, 100% {-webkit-transform: translateX(-50%) rotate(-2deg);transform: translateX(-50%) rotate(-2deg);}50% {-webkit-transform: translateX(-50%) rotate(2deg);transform: translateX(-50%) rotate(2deg);}
}@-webkit-keyframes enlargeFlame {0%, 100% {height: 120px;}50% {height: 140px;}
}@keyframes enlargeFlame {0%, 100% {height: 120px;}50% {height: 140px;}
}.glow {width: 26px;height: 60px;border-radius: 50% 50% 35% 35%;left: 50%;top: -48px;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);background: rgba(0, 133, 255, .7);-webkit-box-shadow: 0 -40px 30px 0 #dc8a0c, 0 40px 50px 0 #dc8a0c, inset 3px 0 2px 0 rgba(0, 133, 255, .6), inset -3px 0 2px 0 rgba(0, 133, 255, .6);box-shadow: 0 -40px 30px 0 #dc8a0c, 0 40px 50px 0 #dc8a0c, inset 3px 0 2px 0 rgba(0, 133, 255, .6), inset -3px 0 2px 0 rgba(0, 133, 255, .6);
}.glow:before {width: 70%;height: 60%;left: 50%;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);bottom: 0;border-radius: 50%;background: rgba(0, 0, 0, 0.35);
}.blinking-glow {width: 100px;height: 180px;left: 50%;top: -55%;-webkit-transform: translateX(-50%);-ms-transform: translateX(-50%);transform: translateX(-50%);border-radius: 50%;background: #ff6000;-webkit-filter: blur(50px);-moz-filter: blur(60px);-o-filter: blur(60px);-ms-filter: blur(60px);filter: blur(60px);-webkit-animation: blinkIt .1s infinite;animation: blinkIt .1s infinite;
}@-webkit-keyframes blinkIt {50% {opacity: .8;}
}@keyframes blinkIt {50% {opacity: .8;}
}
  • .holder:定义蜡烛容器的样式。它是一个相对定位的元素,宽150px,高400px,并且垂直居中。
  • .candle:定义蜡烛主体的样式。它是一个绝对定位的元素,宽150px,高300px,底部对齐,并且有圆角和渐变背景,模拟蜡烛的质感。
  • .candle:before 和 .candle:after:这些伪元素用于添加蜡烛顶部的装饰,如烛芯的顶部装饰和底部的光晕。
  • .thread:定义烛芯的样式。它是一个绝对定位的元素,位于蜡烛顶部,有圆角和渐变背景,模拟烛芯的质感。
  • .flame:定义火焰的样式。它是一个绝对定位的元素,位于蜡烛底部,有圆角和渐变背景,模拟火焰的形状和颜色。它还包含了两个动画,moveFlame 和 enlargeFlame,用于模拟火焰的动态效果。
  • .glow:定义蜡烛火焰底部的光晕样式。它是一个绝对定位的元素,位于蜡烛顶部,有圆角和渐变背景,模拟光晕的效果。
  • .blinking-glow:定义蜡烛火焰周围的闪烁光晕样式。它是一个绝对定位的元素,位于蜡烛顶部,有圆角和模糊背景,模拟闪烁的光晕效果。它还包含了一个动画blinkIt,用于模拟光晕的闪烁效果。
  • @keyframes moveFlame:定义火焰移动的动画,使火焰在垂直方向上轻微摆动。
  • @keyframes enlargeFlame:定义火焰放大的动画,使火焰在垂直方向上轻微伸缩。
  • @keyframes blinkIt:定义光晕闪烁的动画,使光晕的透明度在一定范围内变化,模拟闪烁效果。

http://www.ppmy.cn/devtools/134536.html

相关文章

NPOI 实现Excel模板导出

记录一下使用NPOI实现定制的Excel导出模板&#xff0c;已下实现需求及主要逻辑 所需Json数据 对应参数 List<PurQuoteExportDataCrInput> listData [{"ItemName": "电缆VV3*162*10","Spec": "电缆VV3*162*10","Uom":…

《硬件架构的艺术》笔记(二):时钟与复位

本章主要针对ASIC设计给出建议&#xff0c;独立于CAD工具以及工艺&#xff0c;主要针对模块设计和存储器接口。 同步设计 这是对时钟域控制最安全的方法&#xff0c;单个主时钟和单个主置位/复位信号驱动设计中所有时序器件。 避免使用行波计数器 行波计数器&#xff1a;用触…

LeetCode 491-非递减子序列

题目链接&#xff1a;LeetCod491 欢迎留言交流&#xff0c;每天都会回消息。 class Solution {//最终返回结果List<List<Integer>> rs new ArrayList<>();//递归路径中的值LinkedList<Integer> path new LinkedList<>();public List<List…

git简介和本地仓库创建,并提交修改。git config init status add commit

一、Git简介和本地仓库组成 1.1 git简介 视频教程在这 git简介&#xff0c;版本控制系统&#xff0c;工作区&#xff0c;暂存区&#xff0c;本地仓库_哔哩哔哩_bilibili 如下图&#xff0c;比如我们写毕业论文&#xff0c;要经常修改和完善&#xff0c;得靠自己保存&#x…

MyBatis缓存

目录 一、MyBatis缓存概述 二、一级缓存 三、二级缓存 四、自定义缓存 五、缓存策略与优化 MyBatis的缓存机制是其性能优化的重要组成部分&#xff0c;它通过缓存对象来存储查询结果&#xff0c;以减少数据库访问次数&#xff0c;从而提高查询性能。以下是对MyBatis缓存的…

「实战应用」如何用图表控件LightningChart .NET在WPF中制作表格?(二)

LightningChart .NET完全由GPU加速&#xff0c;并且性能经过优化&#xff0c;可用于实时显示海量数据-超过10亿个数据点。 LightningChart包括广泛的2D&#xff0c;高级3D&#xff0c;Polar&#xff0c;Smith&#xff0c;3D饼/甜甜圈&#xff0c;地理地图和GIS图表以及适用于科…

pyinstaller+upx给python GUI程序添加自定义图标

一、在线.ico图标生成 windows用48x48尺寸 https://www.ico51.cn/ 二、upx打包图标工具 https://upx.github.io/ 三、UI文件生成py代码 pyside2-uic window.ui > window.py 四、打包命令 1、–icon&#xff1a;这个是.ico图标路径 2、–upx-dir&#xff1a;upx打包工…

uniapp中多角色导致tabbar过多的解决方式

由于项目时间较紧张&#xff0c;找了很多却没找到特别合适的方法&#xff0c;最后使用了此方式。 一、自己封装tabbar组件 这里就不介绍怎么封装了&#xff0c;先说一下缺点&#xff1a; 1.跳转会有白屏问题&#xff08;并且搜了好多资料以及查看官网发现没有特别合适的方法…