Skip to content
This repository has been archived by the owner on Jan 22, 2022. It is now read-only.

krunalshahcodes/particles-with-infinite-gradient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Particles Background With Infinite Gradient Effect

license

Change Gradient Color

Edit particles-js ID in assets/css/style.css

#particles-js {
    width: 100%;
    height: 100%;
    background-color: #c91d61;
    background: linear-gradient(270deg, #01acde, #c5d201, #f59a00, #e30613, #c91d61);
    background-size: 1000% 1000% !important;
    -webkit-animation: changeColors 30s ease infinite;
    -moz-animation: changeColors 30s ease infinite;
    -o-animation: changeColors 30s ease infinite;
    animation: changeColors 30s ease infinite;
    display: block;
}

@-webkit-keyframes changeColors {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}


Built With

  • Particles.JS - A lightweight JavaScript library for creating particles

About

Background with particle js and infinite color gradient.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published