鱼C论坛

 找回密码
 立即注册
查看: 2881|回复: 1

[已解决]求助!实现太空中的火箭,流星的效果实现不了

[复制链接]
发表于 2020-11-3 16:15:09 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
<!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>
        * {
            margin: 0;
            padding: 0;
        }
        img {
            width: 200px;
        }
        .box {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgb(22,67,144);
        }
        .rocket {
            position: relative;
            animation: shake 0.5s linear infinite ;
        }
        @keyframes shake {
            0%,100% {
                transform: translateY(2px);
            }
            50% {
                transform: translateY(-2px);
            }
        }
        .rocket::after {
            content: '';
            width: 10px;
            height: 150px;
            background:linear-gradient(rgb(178, 178, 235),transparent);
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            margin-left: 5px;
            bottom: -110px;
        }
        .box i{
            width: 1px;
            height: 20px;
            position: absolute;
            left :20px;
            top :0px;
            background: white;
            animation: line 2s linear infinite ;
            }
            @keyframes line {
                from{
                    transform: translateY(0);
                }
                to {
                    transform: translateY(90vh);
                }
            }
  
    </style>
</head>
<body>
    <div class="box">
        <div class="rocket">
            <img src="https://dss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=282265150,2776916218&fm=26&gp=0.jpg" alt="">

        </div>
        <i></i>
    </div>
    <script>
        function rand(m,n){
           return Math.ceil(Math.random()*(m-n+1))+m-1;
           }
        
        
        let num = 40;
        for (let i=0;i<num;i++){
            const i = document.createElement('i');
            i.style.height = rand(30,100) +'px';
            i.style.left = rand(1,99)+'vw';
            i.style.animationDuration = rand(5,30)/10 +'s';
            document.querySelector('.box').appendChild(i);
        }
        
    </script>
</body>
</html>
最佳答案
2020-11-3 17:11:55
我解决了= =
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-11-3 17:11:55 | 显示全部楼层    本楼为最佳答案   
我解决了= =
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-23 20:04

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表