html+css实现星系图

往期内容:

01-html+css+js实现时钟

02-html+css+js实现骰子

03-html+css+js实现点名系统


前言

本文通过html和css3D旋转属性实现星系效果。


一、整体效果

整体效果如下:
1、文字逐行、渐变显示;
2、背景星系图旋转;
3、行星绕中心公转;
4、行星自转;
5、行星自身轨道绕行星旋转。
效果图如下:
整体效果图

二、代码实现

1.背景图

背景图设计思路:
1、给定一个盒子和浏览器窗口一样大;
2、插入img标签,放置背景图;
3、对img长宽进行放大,并调整位置,使img旋转90°的时候不会露出白边;
4、对盒子进行溢出隐藏。
5、增加旋转动画。

html代码:

 <div class="bg">
        <img src="images/star.jpg" alt="">
 </div>

css代码:

* {
            padding: 0;
            margin: 0;
            box-sizing: content-box;
        }

        html,
        body {
            height: 100%;
            width: 100%;
        }

        /* 背景盒子 */
        .bg {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        /* 背景盒子图片需比盒子大,不然旋转时会露出白边 */
        .bg img {
            position: absolute;
            top: -800px;
            left: -1000px;
            width: 200%;
            height: 250%;
            animation: scroll4 200s infinite linear;
        }
         /* 大背景转圈动画 */
        @keyframes scroll4 {
            to {
                transform: rotateZ(360deg);
            }
        }

2.主体星系

设计思路如下:
1、绘制星球和大轨道;
2、绘制小轨道;
3、星球沿z轴自转;
4、星球光晕沿X轴旋转;
5、大轨道沿X轴旋转一定角度后(为了看出3D效果),沿Z轴旋转;

html代码:

<div class="galact">
        <!-- 太阳 -->
        <div class="sun">

        </div>
        <!-- 轨道 -->
        <ul class="rail">
            <li>
                <div class="box1"></div>
                <div class="rail1"></div>
            </li>
            <li>
                <div class="rail2"></div>
                <div class="box2"></div>
            </li>
            <li>
                <div class="rail3"></div>
                <div class="box3"></div>

            </li>
            <li>
                <div class="rail4"></div>
                <div class="box4"></div>
            </li>
            <li>
                <div class="rail5"></div>
                <div class="box5"></div>

            </li>
        </ul>

    </div>

css代码:


        /* 轨道 */
        ul.rail {
            position: relative;
            width: 700px;
            height: 700px;
            margin: 0 auto;
            transition: all 2s;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .rail li {
            color: aliceblue;
            position: absolute;
            border-radius: 50%;
            list-style: none;
            transform-style: preserve-3d;
            border: 2px solid white;
        }

        .rail li:first-child {
            width: 700px;
            height: 700px;
            animation: scroll 15s infinite linear;

        }

        .rail li:nth-child(2) {
            left: 50px;
            top: 50px;
            width: 600px;
            height: 600px;
            animation: scroll 12s infinite linear;
        }

        .rail li:nth-child(3) {
            top: 100px;
            left: 100px;
            width: 500px;
            height: 500px;
            animation: scroll 10s infinite linear;
        }

        .rail li:nth-child(4) {
            top: 150px;
            left: 150px;
            width: 400px;
            height: 400px;
            animation: scroll 8s infinite linear;
        }

        .rail li:nth-child(5) {
            top: 200px;
            left: 200px;
            width: 300px;
            height: 300px;
            animation: scroll 5s infinite linear;
        }

        /* 公转 */
        @keyframes scroll {
            from {
                transform: rotateX(70deg) rotateZ(0deg);
            }

            to {
                transform: rotateX(70deg) rotateZ(360deg);
            }
        }

        /* 自转 */
        @keyframes scroll2 {
            from {
                transform: rotateZ(0deg);
            }

            to {
                transform: rotateZ(360deg);
            }
        }

        /* 小轨道转圈 */
        @keyframes scroll3 {
            to {
                transform: rotateX(360deg);
            }  
        }

        /* 太阳 */
        .sun {
            top: 250px;
            left: 250px;
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: url(images/sun1.jpg) no-repeat;
            background-size: 100% 100%;
        }

        /* 星球 */
        div[class^=box] {
            border-radius: 50%;
            position: absolute;
            transform-style: preserve-3d;
            animation: scroll2 5s infinite linear;

        }

        ul li .box1 {
            top: 70px;
            left: 60px;
            width: 80px;
            height: 80px;
            background-color: pink;
            transform-style: preserve-3d;
            background: url(images/ball.jpg) no-repeat;
            background-size: 100% 100%;
            transform: rotateX(0deg) rotateZ(0deg) rotateY(0deg);

        }

        /* 小轨道 */
        ul li div[class^='rail'] {
            position: absolute;
            border-radius: 50%;
            outline-offset: -3px;
            border: 1px solid #fff;
            /* transform: rotateX(50deg); */
        }

        /* 星球1和轨道 */
        .rail1 {
            top: 65px;
            left: 60px;
            width: 80px;
            height: 80px;
            animation: scroll3 7s infinite linear;
            height: 90px;
            outline: 5px rgba(200, 138, 138, 0.7) solid;
            /* transform-style: preserve-3d; */
        }

        /* 星球2和轨道 */

        .box2 {
            top: 200px;
            left: -10px;
            height: 50px;
            width: 50px;
            background-color: aqua;
            background: url(images/ball2.jpg) no-repeat;
            background-size: 100% 100%;
        }

        .rail2 {
            top: 195px;
            left: -15px;
            height: 60px;
            width: 60px;
            animation: scroll3 5s infinite linear;
            outline: 5px rgba(119, 115, 222, 0.75) solid;

        }

        /* 星球3和轨道 */

        .box3 {
            top: 70px;
            right: 10px;
            width: 70px;
            height: 70px;
            background-color: gold;
            background: url(images/ball3.jpg) no-repeat;
            background-size: 100% 100%;
        }

        .rail3 {
            top: 65px;
            right: 5px;
            width: 80px;
            height: 80px;
            animation: scroll3 8s infinite linear;
            outline: 5px rgba(134, 126, 126, 0.75) solid;
        }

        /* 星球4和轨道 */

        .box4 {
            top: 170px;
            right: -30px;
            width: 70px;
            height: 70px;
            background-color: blue;
            background: url(images/ball4.jpg) no-repeat;
            background-size: 100% 100%;
        }

        .rail4 {
            top: 165px;
            right: -35px;
            width: 80px;
            height: 80px;
            animation: scroll3 6s infinite linear;
            outline: 5px rgba(56, 102, 218, 0.6) solid;

        }

        /* 星球5和轨道 */

        .box5 {
            top: 170px;
            left: -30px;
            width: 70px;
            height: 70px;
            background-color: rgb(213, 220, 175);
            background: url(images/ball5.jpg) no-repeat;
            background-size: 100% 100%;
        }

        .rail5 {
            top: 165px;
            left: -35px;
            width: 80px;
            height: 80px;
            animation: scroll3 7s infinite linear;
            outline: 5px rgba(225, 189, 79, 0.6) solid;
        }

3.添加文字效果

最后,增加一点文字,点缀以下,思路如下:
1、文字需要分段显示,故需要四个段落;
2、每个句子动画分别延时不同时间,营造递进效果;
3、动画设定opacity并设置both属性,让文字渐变;
代码如下:

html

<div class="font">
        <p>寄蜉蝣于天地,渺沧海之一粟。</p>
        <p>哀吾生之须臾,羡宇宙之无穷。</p>
        <p>挟飞仙以遨游,抱明月而长终。</p>
        <p>知不可乎骤得,托遗响于悲风。</p>
</div>

css代码

.font {
            position: absolute;
            top: 30px;
            left: 20px;
            color: #fff;
            /* 垂直显示 */
            writing-mode: vertical-rl;
            font: 400 25px/3 '楷体';
        }

        /* 每条句子增加不同延时 */
        .font p:nth-child(1) {
            animation: fonts 8s linear both;
        }

        .font p:nth-child(2) {
            animation: fonts 8s 1s linear both;

        }

        .font p:nth-child(3) {
            animation: fonts 8s 2s linear both;
        }

        .font p:nth-child(4) {
            animation: fonts 8s 3s linear both;
        }

        /* 文字渐进动画 */
        @keyframes fonts {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

4.整体代码

整体代码如下:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>太阳系</title>
    <style>
        * {
            padding: 0;
            margin: 0;
            box-sizing: content-box;
        }

        html,
        body {
            height: 100%;
            width: 100%;
        }

        /* 背景盒子 */
        .bg {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        /* 背景盒子图片需比盒子大,不然旋转时会露出白边 */
        .bg img {
            position: absolute;
            top: -800px;
            left: -1000px;
            width: 200%;
            height: 250%;
            animation: scroll4 200s infinite linear;

        }

        .galact {
            position: relative;
            left: 400px;
            width: 700px;
            height: 700px;
            transform-style: preserve-3d;

        }

        /* 轨道 */
        ul.rail {
            position: relative;
            width: 700px;
            height: 700px;
            margin: 0 auto;
            transition: all 2s;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .rail li {
            color: aliceblue;
            position: absolute;
            border-radius: 50%;
            list-style: none;
            transform-style: preserve-3d;
            border: 2px solid white;
        }

        .rail li:first-child {
            width: 700px;
            height: 700px;
            animation: scroll 15s infinite linear;

        }

        .rail li:nth-child(2) {
            left: 50px;
            top: 50px;
            width: 600px;
            height: 600px;
            animation: scroll 12s infinite linear;
        }

        .rail li:nth-child(3) {
            top: 100px;
            left: 100px;
            width: 500px;
            height: 500px;
            animation: scroll 10s infinite linear;
        }

        .rail li:nth-child(4) {
            top: 150px;
            left: 150px;
            width: 400px;
            height: 400px;
            animation: scroll 8s infinite linear;
        }

        .rail li:nth-child(5) {
            top: 200px;
            left: 200px;
            width: 300px;
            height: 300px;
            animation: scroll 5s infinite linear;
        }

        /* 公转 */
        @keyframes scroll {
            from {
                transform: rotateX(70deg) rotateZ(0deg);
            }

            to {
                transform: rotateX(70deg) rotateZ(360deg);
            }
        }

        /* 自转 */
        @keyframes scroll2 {
            from {
                transform: rotateZ(0deg);
            }

            to {
                transform: rotateZ(360deg);
            }
        }

        /* 小轨道转圈 */
        @keyframes scroll3 {
            to {
                transform: rotateX(360deg);
            }
        }

        /* 大背景转圈 */
        @keyframes scroll4 {
            to {
                transform: rotateZ(360deg);

            }
        }

        /* 太阳 */
        .sun {
            top: 250px;
            left: 250px;
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: url(images/sun1.jpg) no-repeat;
            background-size: 100% 100%;
        }

        /* 星球 */
        div[class^=box] {
            border-radius: 50%;
            position: absolute;
            transform-style: preserve-3d;
            animation: scroll2 5s infinite linear;

        }

        ul li .box1 {
            top: 70px;
            left: 60px;
            width: 80px;
            height: 80px;
            background-color: pink;
            transform-style: preserve-3d;
            background: url(images/ball.jpg) no-repeat;
            background-size: 100% 100%;
            transform: rotateX(0deg) rotateZ(0deg) rotateY(0deg);

        }

        /* 小轨道 */
        ul li div[class^='rail'] {
            position: absolute;
            border-radius: 50%;
            outline-offset: -3px;
            border: 1px solid #fff;
            /* transform: rotateX(50deg); */
        }

        /* 星球1和轨道 */
        .rail1 {
            top: 65px;
            left: 60px;
            width: 80px;
            height: 80px;
            animation: scroll3 7s infinite linear;
            height: 90px;
            outline: 5px rgba(200, 138, 138, 0.7) solid;
            /* transform-style: preserve-3d; */
        }

        /* 星球2和轨道 */

        .box2 {
            top: 200px;
            left: -10px;
            height: 50px;
            width: 50px;
            background-color: aqua;
            background: url(images/ball2.jpg) no-repeat;
            background-size: 100% 100%;
        }

        .rail2 {
            top: 195px;
            left: -15px;
            height: 60px;
            width: 60px;
            animation: scroll3 5s infinite linear;
            outline: 5px rgba(119, 115, 222, 0.75) solid;

        }

        /* 星球3和轨道 */

        .box3 {
            top: 70px;
            right: 10px;
            width: 70px;
            height: 70px;
            background-color: gold;
            background: url(images/ball3.jpg) no-repeat;
            background-size: 100% 100%;
        }

        .rail3 {
            top: 65px;
            right: 5px;
            width: 80px;
            height: 80px;
            animation: scroll3 8s infinite linear;
            outline: 5px rgba(134, 126, 126, 0.75) solid;
        }

        /* 星球4和轨道 */

        .box4 {
            top: 170px;
            right: -30px;
            width: 70px;
            height: 70px;
            background-color: blue;
            background: url(images/ball4.jpg) no-repeat;
            background-size: 100% 100%;
        }

        .rail4 {
            top: 165px;
            right: -35px;
            width: 80px;
            height: 80px;
            animation: scroll3 6s infinite linear;
            outline: 5px rgba(56, 102, 218, 0.6) solid;

        }

        /* 星球5和轨道 */

        .box5 {
            top: 170px;
            left: -30px;
            width: 70px;
            height: 70px;
            background-color: rgb(213, 220, 175);
            background: url(images/ball5.jpg) no-repeat;
            background-size: 100% 100%;
        }

        .rail5 {
            top: 165px;
            left: -35px;
            width: 80px;
            height: 80px;
            animation: scroll3 7s infinite linear;
            outline: 5px rgba(225, 189, 79, 0.6) solid;
        }

        /* 诗句 */
        .font {
            position: absolute;
            top: 30px;
            left: 20px;
            color: #fff;
            /* 垂直显示 */
            writing-mode: vertical-rl;
            font: 400 25px/3 '楷体';
        }

        /* 每条句子增加不同延时 */
        .font p:nth-child(1) {
            animation: fonts 8s linear both;
        }

        .font p:nth-child(2) {
            animation: fonts 8s 1s linear both;

        }

        .font p:nth-child(3) {
            animation: fonts 8s 2s linear both;
        }

        .font p:nth-child(4) {
            animation: fonts 8s 3s linear both;
        }

        /* 文字渐进动画 */
        @keyframes fonts {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }
    </style>
</head>

<body>
    <div class="bg">
        <img src="images/star.jpg" alt="">
    </div>

    <div class="galact">
        <!-- 太阳 -->
        <div class="sun">

        </div>
        <!-- 轨道 -->
        <ul class="rail">
            <li>
                <div class="box1"></div>
                <div class="rail1"></div>
            </li>
            <li>
                <div class="rail2"></div>
                <div class="box2"></div>
            </li>
            <li>
                <div class="rail3"></div>
                <div class="box3"></div>

            </li>
            <li>
                <div class="rail4"></div>
                <div class="box4"></div>
            </li>
            <li>
                <div class="rail5"></div>
                <div class="box5"></div>

            </li>
        </ul>

    </div>
    <!-- 加一首诗 -->
    <div class="font">
        <p>寄蜉蝣于天地,渺沧海之一粟。</p>
        <p>哀吾生之须臾,羡宇宙之无穷。</p>
        <p>挟飞仙以遨游,抱明月而长终。</p>
        <p>知不可乎骤得,托遗响于悲风。</p>
    </div>

</body>

</html>

总结

综上,就是本次分享全部内容,前端小菜鸡一枚,如发现代码错误或优化空间,欢迎大佬随时指正,不胜感激。
代码及图片打包下载可移步:https://download.csdn.net/download/qq_42825643/85152425

  • 4
    点赞
  • 24
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

liyfn

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值