<!DOCTYPE html >
<style >
.not-animated {
display: inline-block;
width: 50 px;
height: 50 px;
border-radius: 50 %;
background: #eee;
}
.simple-animation {
display: inline-block;
width: 64 px;
height: 64 px;
border-radius: 50 %;
background: red;
animation: move 200 s infinite;
}
.multiple-animations {
display: inline-block;
width: 50 px;
height: 50 px;
border-radius: 50 %;
background: #eee;
animation: move 200 s infinite , glow 100 s 5 ;
animation-timing-function: ease-out;
animation-direction: reverse;
animation-fill-mode: both;
}
.transition {
display: inline-block;
width: 50 px;
height: 50 px;
border-radius: 50 %;
background: #f06;
transition: width 500 s ease-out;
}
.transition.get-round {
width: 200 px;
}
.long-animation {
display: inline-block;
width: 50 px;
height: 50 px;
border-radius: 50 %;
background: gold;
animation: move 100 s;
}
.short-animation {
display: inline-block;
width: 50 px;
height: 50 px;
border-radius: 50 %;
background: purple;
animation: move 1 s;
}
.delayed-animation {
display: inline-block;
width: 50 px;
height: 50 px;
border-radius: 50 %;
background: rebeccapurple;
animation: move 200 s 5 s infinite;
}
.delayed-transition {
display: inline-block;
width: 50 px;
height: 50 px;
border-radius: 50 %;
background: black;
transition: width 500 s 3 s;
}
.delayed-transition.get-round {
width: 200 px;
}
.delayed-multiple-animations {
display: inline-block;
width: 50 px;
height: 50 px;
border-radius: 50 %;
background: green;
animation: move .5 s 1 s 10 , glow 1 s .75 s 30 ;
}
.multiple-animations-2 {
display: inline-block;
width: 50 px;
height: 50 px;
border-radius: 50 %;
background: blue;
animation: move .5 s, glow 100 s 2 s infinite, grow 300 s 1 s 100 ;
}
.all-transitions {
position: absolute;
top: 0 ;
right: 0 ;
width: 50 px;
height: 50 px;
background: blue;
transition: all .2 s;
}
.all-transitions.expand {
width: 200 px;
height: 100 px;
}
@keyframes move {
100 % {
transform: translateY(100 px);
}
}
@keyframes glow {
100 % {
background: yellow;
}
}
@keyframes grow {
100 % {
width: 100 px;
}
}
</style >
<div class="not-animated" ></div >
<div class="simple-animation" ></div >
<div class="multiple-animations" ></div >
<div class="transition" ></div >
<div class="long-animation" ></div >
<div class="short-animation" ></div >
<div class="delayed-animation" ></div >
<div class="delayed-transition" ></div >
<div class="delayed-multiple-animations" ></div >
<div class="multiple-animations-2" ></div >
<div class="all-transitions" ></div >
<script type="text/javascript" >
"use strict" ;
// Get the transitions started when the page loads
addEventListener("load" , function() {
document.querySelector(".transition" ).classList.add("get-round" );
document.querySelector(".delayed-transition" ).classList.add("get-round" );
});
</script >
Messung V0.5 in Prozent C=100 H=100 G=100
¤ Dauer der Verarbeitung: 0.10 Sekunden
(vorverarbeitet am 2026-06-07)
¤
*© Formatika GbR, Deutschland