Search
 
SCRIPT & CODE EXAMPLE
 

HTML

falling star animation code

// HTML part
<!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>CSS Shooting Stars Animation</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <section>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
        <span></span>
    </section>
</body>
</html>

// CSS part
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow: hidden;
}
section{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(./bg0.jpg);
    background-position-x: center;
    background-size: cover;
    animation: animateBg 50s linear infinite;
}
@keyframes animateBg {
    0%,100%
    {
        transform:scale(1);
    }
    50%
    {
        transform:scale(1.2);
    }
}
span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 1)  ;
    animation:  animate 3s linear infinite;
}
span::before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}
@keyframes animate {
    0%
    {
        transform: rotate(315deg) translateX(0);
        opacity: 1;
    }
    70%
    {
        opacity: 1;

    }
    100%
    {
        transform: rotate(315deg) translateX(-1500px);
        opacity: 0;

    }
    
}
span:nth-child(1){
    top: 0;
    right: 0;
    left:initial;
    animation-delay:0 ;
    animation-duration: 1s;
}

span:nth-child(2){
    top: 0;
    right: 80px;
    left:initial;
    animation-delay:0.2s;
    animation-duration: 3s;
}

span:nth-child(3){
    top: 80px;
    right: 0px;
    left:initial;
    animation-delay:0.4s ;
    animation-duration: 2s;
}

span:nth-child(4){
    top: 0;
    right: 180px;
    left:initial;
    animation-delay:0.6s;
    animation-duration: 1.5s;
}

span:nth-child(5){
    top: 0;
    right: 400px;
    left:initial;
    animation-delay:0.8s;
    animation-duration: 2.5s;
}

span:nth-child(6){
    top: 0;
    right: 600px;
    left:initial;
    animation-delay:1s ;
    animation-duration: 3s;
}
span:nth-child(7 ){
    top: 300px;
    right: 0px;
    left:initial;
    animation-delay:1s ;
    animation-duration: 1.75s;
}

span:nth-child(8){
    top: 0px;
    right: 700px;
    left:initial;
    animation-delay:1.4s ;
    animation-duration: 1.25s;
}

span:nth-child(9){
    top: 0px;
    right: 1000px;
    left:initial;
    animation-delay:0.75s ;
    animation-duration: 2.25s;
}

span:nth-child(10){
    top: 0px;
    right: 1000px;
    left:initial;
    animation-delay:2.75s ;
    animation-duration: 2.25s;
}
Comment

PREVIOUS NEXT
Code Example
Html :: display sqlite text with jinja as HTML paragraph 
Html :: eml vs emlx files 
Html :: virtual pet comp 105 code 
Html :: on change in textarea ember 
Html :: html inframe map 
Html :: allow <= 20 characters in search engine snippets 
Html :: how put h:putputText in center of div 
Html :: ocean protocol react sample tutorial 
Html :: awesome cheatsheets 
Html :: phaser hello world 
Html :: a tagdefault color code 
Html :: Cause Dropbox To Behave Like A CDN (Content Delivery Network) For IMG/GIF Files 
Html :: add time bar to website complete code 
Html :: hover message html 
Html :: XSLT group following siblings that follow a tag with generated ID 
Html :: github fold all review files 
Html :: what is indentation in web development 
Html :: Rollup failed to resolve import from "index.html". 
Html :: couleurs html 
Html :: simplexml load file character encoding url 
Html :: scratch card HTML 
Html :: how to call parent method from child component 
Html :: site.baseurl page.image_path 
Html :: asciidoc anchor 
Html :: c++ compile syntax error 
Html :: vertical line bootstrap 
Html :: change the size of canvas char.js 
Html :: spacing out links on nav bar using flex 
Html :: questions on html 
Html :: How to link Excel sheet to HTML page 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =