<!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
发布的文章
Jquery (第三章笔记)
2024-08-18 00:08:37
jquery实现tab切换简单好用
2024-08-18 00:08:35
vue jQuery 混用实现 点击日历展示list
2024-08-18 00:08:34
推荐使用Zabuto Calendar:轻量级的jQuery日历插件
2024-08-18 00:08:33
jQuery Cookie 插件使用教程
2024-08-14 22:08:01
推荐一款强大的jQuery日期范围选择插件——jQuery Date Range Picker
2024-08-18 00:08:31
jQuery的DOM操作
2024-08-18 00:08:21
jQuery结构简析(1),看这篇足矣了
2024-05-10 22:05:53
使用 echarts 数据发生变化,可图表却没有重新渲染
2024-08-18 00:08:12
echarts显示中国地图
2024-08-18 00:08:11
大家推荐的文章