首页 前端知识 HTML5 满天繁星 流星划过动画效果(CSS 动画)

HTML5 满天繁星 流星划过动画效果(CSS 动画)

2024-04-29 11:04:08 前端知识 前端哥 785 647 我要收藏

Untitled11.gif

image.png

<!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% {
     
   
转载请注明出处或者链接地址:https://www.qianduange.cn//article/6093.html
标签
评论
发布的文章

Jquery (第三章笔记)

2024-08-18 00:08:37

jquery实现tab切换简单好用

2024-08-18 00:08:35

jQuery Cookie 插件使用教程

2024-08-14 22:08:01

jQuery的DOM操作

2024-08-18 00:08:21

echarts显示中国地图

2024-08-18 00:08:11

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!