<html >
<head >
<meta charset="UTF-8" >
<title >Animation Test Data</title >
<style >
.ball {
width: 80 px;
height: 80 px;
border-radius: 50 %;
background: #f06;
position: absolute;
}
.still {
top: 0 ;
left: 10 px;
}
.animated {
top: 100 px;
left: 10 px;
animation: simple-animation 2 s infinite alternate;
}
.multi {
top: 200 px;
left: 10 px;
animation: simple-animation 2 s infinite alternate,
other-animation 5 s infinite alternate;
}
.delayed {
top: 300 px;
left: 10 px;
background: rebeccapurple;
animation: simple-animation 3 s 60 s 10 ;
}
.multi-finite {
top: 400 px;
left: 10 px;
background: yellow;
animation: simple-animation 3 s,
other-animation 4 s;
}
.short {
top: 500 px;
left: 10 px;
background: red;
animation: simple-animation 2 s;
}
.long {
top: 600 px;
left: 10 px;
background: blue;
animation: simple-animation 120 s;
}
.negative-delay {
top: 700 px;
left: 10 px;
background: gray;
animation: simple-animation 15 s -10 s;
animation-fill-mode: forwards;
}
.no-compositor {
top: 0 ;
right: 10 px;
background: gold;
animation: no-compositor 10 s cubic-bezier(.57 ,-0 .02 ,1 ,.31 ) forwards;
}
@keyframes simple-animation {
100 % {
transform: translateX(300 px);
}
}
@keyframes other-animation {
100 % {
background: blue;
}
}
@keyframes no-compositor {
100 % {
margin-right: 600 px;
}
}
</style >
</head >
</body >
<div class="ball still" ></div >
<div class="ball animated" ></div >
<div class="ball multi" ></div >
<div class="ball delayed" ></div >
<div class="ball multi-finite" ></div >
<div class="ball short" ></div >
<div class="ball long" ></div >
<div class="ball negative-delay" ></div >
<div class="ball no-compositor" ></div >
</body >
</html >
Messung V0.5 in Prozent C=93 H=99 G=95
¤ Dauer der Verarbeitung: 0.15 Sekunden
(vorverarbeitet am 2026-06-07)
¤
*© Formatika GbR, Deutschland