Search
 
SCRIPT & CODE EXAMPLE
 

CSS

animated background css

/*
	use @keyframes and the animation property
	see this code running here: https://codepen.io/hylobates-lar/pen/qBbQeON
*/
html, body {
  width: 100%;
  height:100%;
}

body {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
Comment

animation background css

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
body{
    width: 100vw;
    height: 100vh;
}
div{
    transition: all .3s ease-in-out;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 500px;
    width: 500px;
}
Comment

html animated background

    <video id="video" autoplay="true" loop muted>
      <source src="background.mp4" type="video/mp4"/>
    </video>
Comment

PREVIOUS NEXT
Code Example
Css :: cursor css 
Css :: increase the distance between paragraphs css 
Css :: resize any element in CSS 
Css :: open sublime text 3 from terminal mac 
Css :: how to make text disappear after a certain length css 
Css :: box sizing 
Css :: materialize css 
Css :: text-decoration 
Css :: color gradient for text 
Css :: border css dashed 
Css :: backdrop filter css 
Css :: flexbox 
Css :: adding a perfect responsive background image 
Css :: sass loader 
Css :: transition behaviour in css 
Css :: css file path 
Css :: portfolio website html css 
Css :: difference between html and css 
Css :: css radial gradients 
Css :: chrome developer tools send get request 
Css :: bootstrap text truncate after 3 lines 
Css :: difference between inline block and inline-block 
Css :: send element to center of div 
Css :: changong text color css 
Css :: css box shadow transform rotate 
Css :: circle percentage css 
Css :: tel css 
Css :: how to change a checkbox to be selected 
Css :: bootstrap grid only css npm install 
Css :: CSS Height, Width and Max-width 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =