用HTML、CSS写一个动态小火箭,CV即可

导读:本篇文章讲解 用HTML、CSS写一个动态小火箭,CV即可,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

动态小火箭

源码,cv即可

<!DOCTYPE html>
<html>

<head>
    <title>Rocket Animation</title>

    <link rel="stylesheet" href="rocket.css" type="text/css">

</head>

<body>
    
    <div class="scene">
        <div class="rocket">
            <img src="rocket2.png" alt="rocket" style="width:100px">
        </div>
    </div>
    <script>

        function stars(){
            let count = 50;
            let scene = document.querySelector('.scene');
            let i=0;
            
            while(i < count){
                
                let star = document.createElement('i');
                let x =Math.floor(Math.random() * window.innerWidth*2);
                
                let duration = Math.random() * 1;
                let h =Math.random() * 100;
                
                star.style.left = x + 'px';
                star.style.width = 1 + 'px';
                star.style.height = h + 'px';
                star.style.animationDuration = duration + 's';

                scene.appendChild(star);
                i++;
            }
        }
        stars();
        al
    </script>
</body>

</html>
*{
    /* 格式化 */
    padding: 0px;
    margin:0px;
    /* 设置盒子大小计算方式 width = content + border +padding */
    box-sizing: border-box;
}
.scene{
    position: relative;
    /* 设置大小 */
    width:100%;
    height:100vh;
    /* 设置背景色 */
    background: #01070a;
    overflow: hidden;
    /* 设置显示模式为弹性盒子 */
    display:flex;
    justify-content: center;
    align-items: center;
}
.scene i{
    position: absolute;
    top:-250px;
    background: rgba(255,255,255,0.5);
    animation: Stars linear infinite;
}
@keyframes Stars {
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(200vh) ;
    }
}
.scene .rocket{
    position: relative;
    animation: fly 0.2s ease infinite ;
}
@keyframes fly {
    0%,100%{
        transform: translateY(-2px);
    }
    50%{
        transform: translateY(2px);
    }
}
.scene .rocket::before{
    content:"";
    width:5px;
    height:240px;
    position: absolute;
    bottom: -235px;
    left:50%;
    transform: translate(-50%,0);
    background:linear-gradient(#00d0ff,transparent);
}

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/79721.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!