<!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 动画)
于 2024-01-29 18:22:13 首次发布
本文分享了一个使用HTML5和CSS实现的满天繁星与流星划过屏幕的动画效果。通过提供的源码地址,可以获取并查看最新的代码调整。
摘要由CSDN通过智能技术生成