MyStyles.css: Difference between revisions

From 미국 할아버지와 영어공부
Jump to navigation Jump to search
(Created page with "#whead{ width: 100px; height: 50px; background-color: red; font-weight: bold; position: relative; animation: mymove 5s; animation-fill-mode: forwards; } #whead {animation-timing-function: linear;} #div2 {animation-timing-function: ease;} #div3 {animation-timing-function: ease-in;} #div4 {animation-timing-function: ease-out;} #div5 {animation-timing-function: ease-in-out;} @keyframes mymove { from {left: 0px;} to {left: 300px;} }")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
#whead{
.whead{
   width: 100px;
   width: 100px;
   height: 50px;
   height: 50px;
Line 9: Line 9:
}
}


#whead {animation-timing-function: linear;}
.whead {animation-timing-function: linear;}
#div2 {animation-timing-function: ease;}
#div2 {animation-timing-function: ease;}
#div3 {animation-timing-function: ease-in;}
#div3 {animation-timing-function: ease-in;}

Latest revision as of 00:22, 9 April 2024

.whead{

 width: 100px;
 height: 50px;
 background-color: red;
 font-weight: bold;
 position: relative;
 animation: mymove 5s;
 animation-fill-mode: forwards;

}

.whead {animation-timing-function: linear;}

  1. div2 {animation-timing-function: ease;}
  2. div3 {animation-timing-function: ease-in;}
  3. div4 {animation-timing-function: ease-out;}
  4. div5 {animation-timing-function: ease-in-out;}

@keyframes mymove {

 from {left: 0px;}
 to {left: 300px;}

}