<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
background: #ccc;
position: relative;
animation: delay 5s 1;
animation-delay: -2s;
}
@keyframes delay {
from {left: 0px;}
to {left: 300px;}
}
</style>
</head>
<body>
<h2>Beispiel für animation-delay mit negativem Wert.</h2>
<p>Hier startet die Animation so, als ob sie bereits 2 Sekunden lang abgespielt worden wäre.</p>
<div></div>
</body>
</html>