CSS-animationer


Indholdsfortegnelse

    Vis indholdsfortegnelse


CSS-animationer

CSS tillader animation af HTML-elementer uden brug af JavaScript eller Flash!

CSS

I dette kapitel lærer du om følgende egenskaber:

  • @keyframes
  • animation-name
  • animation-duration
  • animation-delay
  • animation-iteration-count
  • animation-direction
  • animation-timing-function
  • animation-fill-mode
  • animation

Browserstøtte til animationer

Tallene i tabellen angiver den første browserversion, der fuldt ud understøtter egenskaben.

Property
@keyframes 43.0 10.0 16.0 9.0 30.0
animation-name 43.0 10.0 16.0 9.0 30.0
animation-duration 43.0 10.0 16.0 9.0 30.0
animation-delay 43.0 10.0 16.0 9.0 30.0
animation-iteration-count 43.0 10.0 16.0 9.0 30.0
animation-direction 43.0 10.0 16.0 9.0 30.0
animation-timing-function 43.0 10.0 16.0 9.0 30.0
animation-fill-mode 43.0 10.0 16.0 9.0 30.0
animation 43.0 10.0 16.0 9.0 30.0

Hvad er CSS-animationer?

En animation lader et element gradvist skifte fra en stil til en anden.

Du kan ændre så mange CSS-egenskaber du vil, så mange gange du vil.

For at bruge CSS-animation skal du først angive nogle keyframes for animation.

Keyframes indeholder, hvilke stilarter elementet vil have på bestemte tidspunkter.


@keyframes-reglen

Når du angiver CSS-stile inde i @keyframes regel, vil animationen gradvist ændre sig fra den nuværende stil til den nye stil på bestemte tidspunkter.

For at få en animation til at virke, skal du binde animationen til et element.

Følgende eksempel binder "eksempel"-animationen til <div>-elementet. Animationen vil vare i 4 sekunder, og den vil gradvist ændre baggrundsfarve for <div>-elementet fra "rød" til "gul":

Eksempel

/* The animation code */
@keyframes example {
  from {background-color: red;}
   
to {background-color: yellow;}
}
/* The element to apply the animation to */
div {
  width: 100px;
  height: 100px;
  
background-color: red;	animation-name: example;
  animation-duration: 4s;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
}

@keyframes example {
  from {background-color: red;}
  to {background-color: yellow;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<div></div>

<p><b>Note:</b> When an animation is finished, it goes back to its original style.</p>

</body>
</html>


Bemærk: Egenskaben animation-duration definerer, hvor lang tid en animation skal tage at fuldføre. Hvis egenskaben animation-duration ikke er angivet, ingen animation vil forekomme, fordi standardværdien er 0s (0 sekunder).

I eksemplet ovenfor har vi specificeret, hvornår stilen ændres ved at bruge søgeordene "fra" og "til" (som repræsenterer 0 % (start) og 100 % (fuldført)).

Det er også muligt at bruge procent. Ved at bruge procent kan du tilføje lige så mange stil ændres som du vil.

Følgende eksempel vil ændre baggrundsfarven på <div> element, når animationen er 25 % færdig, 50 % færdig, og igen når animationen er 100 % færdig:

Eksempel

/* The animation code */
@keyframes example
{
  0%   {background-color: red;}
   
25%  {background-color: yellow;}
  50%  {background-color: blue;}
  100% {background-color: green;}
}
/* The element to apply the animation to */
div {
  
width: 100px;
  height: 100px;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style>
div {
  width: 100px;
  height: 100px;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
}

@keyframes example {
  0%   {background-color: red;}
  25%  {background-color: yellow;}
  50%  {background-color: blue;}
  100% {background-color: green;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<div></div>

<p><b>Note:</b> When an animation is finished, it goes back to its original style.</p>

</body>
</html>


Følgende eksempel vil ændre både baggrundsfarven og placeringen af <div> element, når animationen er 25 % færdig, 50 % færdig, og igen når animationen er 100 % færdig:

Eksempel

/* The animation code */
@keyframes example
{
  0%   {background-color:red; left:0px; top:0px;}
   
25%  {background-color:yellow; left:200px; top:0px;}
   
50%  {background-color:blue; left:200px; top:200px;}
   
75%  {background-color:green; left:0px; top:200px;}
   
100% {background-color:red; left:0px; top:0px;}
}
/* The element to apply the animation to */
div {
  
width: 100px;
  height: 100px;
  
position: relative;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
}

@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<div></div>

<p><b>Note:</b> When an animation is finished, it goes back to its original style.</p>

</body>
</html>




Udskyd en animation

Egenskaben animation-delay angiver en forsinkelse for starten af en animation.

Følgende eksempel har en forsinkelse på 2 sekunder, før du starter animationen:

Eksempel

div {
  
width: 100px;
  height: 100px;
  
position: relative;
  background-color: red;
  animation-name: example;
    
animation-duration: 4s;
  animation-delay: 2s;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  animation-delay: 2s;
}

@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>The animation-delay property specifies a delay for the start of an animation. The following example has a 2 seconds delay before starting the animation:</p>

<div></div>

</body>
</html>


Negative værdier er også tilladt. Hvis du bruger negative værdier, animationen vil starte, som om den allerede havde spillet i N sekunder.

I det følgende eksempel starter animationen, som om den allerede havde været det spiller i 2 sekunder:

Eksempel

div {
  
width: 100px;
  height: 100px;
  
position: relative;
  background-color: red;
  
animation-name: example;
  
animation-duration: 4s;
  animation-delay: -2s;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  animation-delay: -2s;
}

@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>Using negative values in the animation-delay property: Here, the animation will start as if it had already been playing for 2 seconds:</p>

<div></div>

</body>
</html>



Indstil hvor mange gange en animation skal køre

Egenskaben animation-iteration-count angiver det antal gange, en animation skal køre.

Følgende eksempel vil køre animationen 3 gange, før den stopper:

Eksempel

div {
  width: 100px;
  height: 100px;
  position: relative;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: 3;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: 3;
}

@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>The animation-iteration-count property specifies the number of times an animation should run. The following example will run the animation 3 times before it stops:</p>

<div></div>

</body>
</html>


Følgende eksempel bruger værdien "uendelig" til at lave animationen fortsætte for evigt:

Eksempel

div {
  
width: 100px;
  height: 100px;
  
position: relative;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
    animation-iteration-count: 
infinite;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>The animation-iteration-count property can be set to infinite to let the animation run for ever:</p>

<div></div>

</body>
</html>



Kør animation i omvendt retning eller skiftende cyklusser

Egenskaben animation-direction angiver om en animation skal afspilles forlæns, baglæns eller alternativt cyklusser.

Egenskaben animation-direction kan have følgende værdier:

normal

- Animationen afspilles som normalt (fremad). Dette er standard

reverse

- Animationen afspilles i omvendt retning (baglæns)

alternate

- Animationen afspilles først fremad, derefter baglæns

alternate-reverse

- Animationen afspilles først baglæns, derefter fremad

Følgende eksempel vil køre animationen i modsat retning (baglæns):

Eksempel

div {
  
width: 100px;
  height: 100px;
  
position: relative;
  background-color: red;
  
animation-name: example;
  
animation-duration: 4s;
  animation-direction: 
reverse;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  animation-direction: reverse;  
}

@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>The animation-direction property specifies whether an animation should be played forwards, backwards or in alternate cycles. The following example will run the animation in reverse direction (backwards):</p>

<div></div>

</body>
</html>


Følgende eksempel bruger værdien "alternet" til at lave animationen løb først frem, så baglæns:

Eksempel

div {
  
width: 100px;
  height: 100px;
  
position: relative;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: 2;
  animation-direction: 
alternate;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: 2;
  animation-direction: alternate;  
}

@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>The animation-direction property specifies whether an animation should be played forwards, backwards or in alternate cycles. The following example uses the value "alternate" to make the animation run forwards first, then backwards:</p>

<div></div>

</body>
</html>


Følgende eksempel bruger værdien "alternate-reverse" til at lave animationen løb først baglæns, så fremad:

Eksempel

div {
  width: 100px;
  height: 100px;
  
position: relative;
  background-color: red;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: 2;
  animation-direction: 
alternate-reverse;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: 2;
  animation-direction: alternate-reverse;  
}

@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>The animation-direction property specifies whether an animation should be played forwards, backwards or in alternate cycles. The following example uses the value "alternate-reverse" to make the animation run backwards first, then forwards:</p>

<div></div>

</body>
</html>



Angiv hastighedskurven for animationen

Egenskaben animation-timing-function angiver hastighedskurven for animation.

Egenskaben animation-timing-function kan have følgende værdier:

ease

- Angiver en animation med en langsom start, derefter hurtig og derefter langsom (dette er standard)

linear

- Angiver en animation med samme hastighed fra start til slut

ease-in

- Angiver en animation med en langsom start

ease-out

- Angiver en animation med en langsom afslutning

ease-in-out

- Angiver en animation med en langsom start og slutning

cubic-bezier(n,n,n,n)

- Lader dig definere dine egne værdier i en cubic-bezier-funktion

Følgende eksempel viser nogle af de forskellige hastighedskurver, der kan bruges:

Eksempel

#div1 {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;}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 50px;
  background-color: red;
  font-weight: bold;
  position: relative;
  animation: mymove 5s;
  animation-fill-mode: forwards;
}

#div1 {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;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>The animation-timing-function property specifies the speed curve of the animation. The following example shows some of the different speed curves that can be used:</p>

<div id="div1">linear</div>
<div id="div2">ease</div>
<div id="div3">ease-in</div>
<div id="div4">ease-out</div>
<div id="div5">ease-in-out</div>

</body>
</html>



Angiv udfyldningstilstanden for en animation

CSS-animationer påvirker ikke et element, før den første keyframe afspilles eller efter det sidste keyframe er afspillet. Egenskaben animation-fill-mode kan tilsidesætte denne adfærd.

Egenskaben animation-fill-mode angiver en stil for målelementet, når animationen ikke afspilles (før den starter, efter den slutter, eller begge dele).

Egenskaben animation-fill-mode kan have følgende værdier:

none

- Standard værdi. Animation vil ikke anvende nogen typografier på elementet før eller efter det udføres

forwards

- Elementet bevarer stilværdierne, der er indstillet af den sidste keyframe (afhænger af animationsretning og animation-iteration-antal)

backwards

- Elementet får de stilværdier, der er indstillet af den første keyframe (afhænger af animationsretningen), og bevarer disse i animationsforsinkelsesperioden

both

- Animationen vil følge reglerne for både frem og tilbage, og udvider animationsegenskaberne i begge retninger

Følgende eksempel lader <div>-elementet beholde stilværdierne fra sidste keyframe, når animationen slutter:

Eksempel

 div {
  width: 100px;
  height: 100px;
  background: red;
  position: relative;
  animation-name: example;
  animation-duration: 3s;
    animation-fill-mode: forwards;
  }

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background: red;
  position: relative;
  animation-name: example;
  animation-duration: 3s;  
  animation-fill-mode: forwards;
}

@keyframes example {
  from {top: 0px;}
  to {top: 200px; background-color: blue;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>Let the div element retain the style values set by the last keyframe when the animation ends:</p>

<div></div>

</body>
</html>


Følgende eksempel lader <div>-elementet få stilværdierne indstillet af første keyframe før animationen starter (i animationsforsinkelsesperioden):

Eksempel

 div {
  width: 100px;
  height: 100px;
  
  background: red;
  position: relative;
  
animation-name: example;
  
animation-duration: 3s;
  
animation-delay: 2s;
  animation-fill-mode: backwards;
  }

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background: red;
  position: relative;
  animation-name: example;
  animation-duration: 3s;  
  animation-delay: 2s;
  animation-fill-mode: backwards;
}

@keyframes example {
  from {top: 0px; background-color: yellow;}
  to {top: 200px;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>Let the div element get the style values set by the first keyframe before the animation starts (during the animation-delay period):</p>

<div></div>

</body>
</html>


Følgende eksempel lader <div>-elementet få stilværdierne sat ved den første keyframe, før animationen starter, og behold stilværdierne fra den sidste keyframe, når animationen slutter:

Eksempel

 div {
  width: 100px;
  height: 100px;
  background: red;
    position: relative;
  
animation-name: example;
  
animation-duration: 3s;
  
animation-delay: 2s;
  animation-fill-mode: both;
  }

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background: red;
  position: relative;
  animation-name: example;
  animation-duration: 3s;  
  animation-delay: 2s;
  animation-fill-mode: both;
}

@keyframes example {
  from {top: 0px; background-color: yellow;}
  to {top: 200px; background-color: blue;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>Let the div element get the style values set by the first keyframe before the animation starts, and retain the style values from the last keyframe when the animation ends:</p>

<div></div>

</body>
</html>



Animation stenografi ejendom

Eksemplet nedenfor bruger seks af animationsegenskaberne:

Eksempel

div
{	animation-name: example;
   
animation-duration: 5s;
   
animation-timing-function: linear;
   
animation-delay: 2s;
   
animation-iteration-count: infinite;
   
animation-direction: alternate;
} 

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation-name: example;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes example {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>This example uses six of the animation properties:</p>

<div></div>

</body>
</html>


Den samme animationseffekt som ovenfor kan opnås ved at bruge stenografien animation egenskab:

Eksempel

div
{
    animation: example 5s linear 2s infinite alternate;
}

Prøv det selv →

<!DOCTYPE html>
<html>
<head>
<style> 
div {
  width: 100px;
  height: 100px;
  background-color: red;
  position: relative;
  animation: myfirst 5s linear 2s infinite alternate;
}

@keyframes myfirst {
  0%   {background-color:red; left:0px; top:0px;}
  25%  {background-color:yellow; left:200px; top:0px;}
  50%  {background-color:blue; left:200px; top:200px;}
  75%  {background-color:green; left:0px; top:200px;}
  100% {background-color:red; left:0px; top:0px;}
}
</style>
</head>
<body>

<h1>CSS Animation</h1>

<p>This example uses the shorthand animation property:</p>

<div></div>

</body>
</html>




CSS-animationsegenskaber

Følgende tabel viser @keyframes-reglen og alle CSS-animationsegenskaberne:

@keyframes

Angiver animationskoden

animation

En stenografi-egenskab til indstilling af alle animationsegenskaber

animation-delay

Angiver en forsinkelse for starten af en animation

animation-direction

Angiver om en animation skal afspilles fremad, baglæns eller i skiftende cyklusser

animation-duration

Angiver, hvor lang tid en animation skal tage at fuldføre en cyklus

animation-fill-mode

Angiver en stil for elementet, når animationen ikke afspilles (før den starter, efter den slutter eller begge dele)

animation-iteration-count

Angiver det antal gange, en animation skal afspilles

animation-name

Angiver navnet på @keyframes-animationen

animation-play-state

Angiver, om animationen kører eller er sat på pause

animation-timing-function

Angiver hastighedskurven for animationen