css3实现的动态月食效果代码实例_html/css_WEB-ITnose
css3实现的动态月食效果代码实例:
本章节分享一段代码实例,它利用CSS3实现了动态的月食效果。
动画其实比较简单简短,需要的朋友可以自行做一下分析,这里就不多介绍了。
代码实例如下:
<!DOCTYPE html><html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>蚂蚁部落</title> <style type="text/css">*{ margin:0; padding:0;}body{ background-color: #000;}.moonback{ width:600px; height:600px; background-color:#000; margin:0 auto; position: relative;}.moonback::before{ content:","; display:block; position:absolute; left:200px; top:100px; width:200px; height:200px; background-color:#ff0; border-radius:100px;}.moonback::after{ content:" "; display:block; position:absolute; left:26px; top:0px; width:200px; height:200px; background-color:#000; border-radius:100px; -webkit-animation:12s dog linear infinite; -moz-animation:12s dog linear infinite; animation:12s dog linear infinite; -webkit-animation-fill-mode:forwards; -moz-animation-fill-mode: forwards; animation-fill-mode: forwards;} @-webkit-keyframes dog{ 0%{ left:27px; top:0px; } 100%{ left:399px; top:216px; }}@-moz-keyframes dog { 0%{ left:27px; top:0px; } 100%{ left:399px; top:216px; }}@keyframes dog{ 0%{ left:27px; top:0px; } 100%{ left:399px; top:216px; }}.star{ position:absolute;}.star::before{ content:"★"; display:block; position:absolute; left:10px; top:20px; width:auto; height:auto; color:#fff; -webkit-transform:scale(0.5); -moz-transform:scale(0.5); transform:scale(0.5); -webkit-animation:1s starlight linear infinite; -moz-animation:1s starlight linear infinite; animation:1s starlight linear infinite; -webkit-animation-fill-mode:forwards; -moz-animation-fill-mode: forwards; animation-fill-mode: forwards;}.star::after{ content:"★"; display:block; position:absolute; left:40px; top:120px; width:auto; height:auto; color:#fff; -webkit-transform:scale(0.5); -moz-transform:scale(0.5); transform:scale(0.5); -webkit-animation:2s starlight linear infinite; -moz-animation: 2s starlight linear infinite; animation: 2s starlight linear infinite;} @-webkit-keyframes starlight{ 0%{ -webkit-transform:scale(0.5); } 100%{ -webkit-transform:scale(0.1); }}@-moz-keyframes starlight{ 0%{ -moz-transform:scale(0.5); } 100%{ -moz-transform:scale(0.1); }}@keyframes starlight{ 0%{ transform:scale(0.5); } 100%{ transform:scale(0.1); }} </style> </head> <body> <div class="content"> <div class="moonback"> <div class="star" style="top:20px;right:220px;"></div> <div class="star" style="top:50px;right:120px;"></div> <div class="star" style="top:190px;left:20px;"></div> <div class="star" style="top:220px;left:50px;"></div> </div> </div> </body></html>
上面的代码实现了我们的要求,更多内容可以参阅相关阅读。
相关阅读:
(1).::before可以参阅CSS的伪对象选择符before/E::before一章节。
(2).border-radius可以参阅CSS3实现圆角效果一章节。
(3).animation可以参阅CSS3的animation属性用法详解一章节。
(4).animation-fill-mode可以参阅animation-fill-mode一章节。
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=18153
更多内容可以参阅:http://www.softwhy.com/divcss/

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

热门话题

本文讨论了HTML&lt; Progress&gt;元素,其目的,样式和与&lt; meter&gt;元素。主要重点是使用&lt; progress&gt;为了完成任务和LT;仪表&gt;对于stati

本文讨论了html&lt; datalist&gt;元素,通过提供自动完整建议,改善用户体验并减少错误来增强表格。Character计数:159

本文讨论了HTML&lt; meter&gt;元素,用于在一个范围内显示标量或分数值及其在Web开发中的常见应用。它区分了&lt; meter&gt;从&lt; progress&gt;和前

本文讨论了使用HTML5表单验证属性,例如必需的,图案,最小,最大和长度限制,以直接在浏览器中验证用户输入。

本文讨论了视口元标签,这对于移动设备上的响应式Web设计至关重要。它解释了如何正确使用确保最佳的内容缩放和用户交互,而滥用可能会导致设计和可访问性问题。

本文讨论了&lt; iframe&gt;将外部内容嵌入网页,其常见用途,安全风险以及诸如对象标签和API等替代方案的目的。

HTML适合初学者学习,因为它简单易学且能快速看到成果。1)HTML的学习曲线平缓,易于上手。2)只需掌握基本标签即可开始创建网页。3)灵活性高,可与CSS和JavaScript结合使用。4)丰富的学习资源和现代工具支持学习过程。
