Abend,
ich sitze gerade vor einem kleinen Problem. Ich möchte, dass eine neue Animation ausgeführt wird wenn die Alte vorbei ist.
PHP
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style/animate.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="vname" class="animated fadeIn">
<header>
<img src="extras/bild1.png">
</header>
</div>
<div id="nname" class="animated fadeIn">
<header>
<img src="extras/bild2.png">
</header>
</div>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script>
$('#vname').on('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', doSomething);
</script>
</body>
</html>
Alles anzeigen
Ich verstehe jetzt nicht genau, was bei statt dem "doSomething" machen soll. Hoffe da kann mir jemand weiterhelfen.