<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: #000;
}
/* 天空 */
#the-sky {
position: relative;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background-color: #000;
overflow: hidden;
}
/* 星星 - 容器 */
.star-container {
position: absolute;
/* 可以在 js 中随机生成星星大小,造成远近感 */
/* transform: scale(0.5); */
}
/* 星星 - 横 */
.star-hor {
position: absolute;
width: 30px;
height: 2px;
border-radius: 100%;
background: linear-gradient(
-45deg,
rgba(0, 0, 255, 0),
/* 星星颜色 */
#5f91ff,
rgba(0, 0, 255, 0)
);
transform: scale(0);
animation-name: shining;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
/* 动画时间,拆出来就是为了方便生成随机时间 */
animation-duration: 3.0s;
}
/* 星星 - 竖 */
.star-ver {
position: absolute;
top: -14px;
left: 14px;
width: 2px;
height: 30px;
border-radius: 100%;
background: linear-gradient(
-45deg,
rgba(0, 0, 255, 0),
/* 星星颜色 */
#5f91ff,
rgba(0, 0, 255, 0)
);
transform: scale(0);
animation-name: shining;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
/* 动画时间,拆出来就是为了方便生成随机时间 */
animation-duration: 3.0s;
}
/* 星星发光动画 */
@keyframes shining {
0% {
HTML5 满天繁星 流星划过动画效果(CSS 动画)
转载请注明出处或者链接地址:https://www.qianduange.cn//article/6093.html
相关文章
-
运行npm error code ENOENTnpm error syscall opennpm error path C:\Users\ultra\Desktop\Vue-Project\pac
-
前端提高篇(102):jQuery高级方法callbacks、deferred
-
【常见错误】npm ERR! code CERT_HAS_EXPIRED & errno CERT_HAS_EXPIRED
-
vue前端页面弹出红色报错遮罩层 Uncaught runtime errors:at handleError (webpack-internal:///./node_modules/webpack
-
npm ERR! code CERT_HAS_EXPIRED npm ERR! errno CERT_HAS_EXPIRED npm ERR! request to https://registry.
-
JQuery中的load()、$
-
《WEB前端框架开发技术》HTML5响应式旅游景区网站——榆林子州HTML CSS JavaScript (1)
-
文本,wangEditor5展示HTML无样式,wangEditor5如何看源码,Ctrl U看CSS文件,代码高亮,Prism.js可以实现,解决方法,参考网页源代码的写法
-
【简单html静态网页代码】 制作一个简单HTML宠物网页(HTML CSS)
-
【html】新建一个html并且在浏览器运行
发布的文章
C#解析JSON的常用库--Newtonsoft.Json
2024-11-30 11:11:42
jsonfield 项目常见问题解决方案
2024-11-30 11:11:42
【SpringMVC】_SpringMVC项目返回HTML与JSON
2024-11-30 11:11:41
BugJson因为json格式问题OOM怎么办
2024-11-30 11:11:41
python 解读JSON文件,一文搞懂!
2024-11-30 11:11:40
Redisson同时使用jackson、fastjson、kryo、protostuff序列化(含效率对比)
2024-11-30 11:11:40
开源项目“Pretty JSON”安装与配置完全指南
2024-11-30 11:11:39
2024年前端最新Nodejs基础之包管理工具npm(二)(2),微软面试题及答案
2024-11-30 11:11:39
解决全局安装pnpm后无法使用的问题
2024-11-30 11:11:39
安装Nodejs后,npm无法使用
2024-11-30 11:11:38
大家推荐的文章