привет, подскажите как можно улучшить мой скрипт ... все работает как надо - но при быстром переключении между блоками - ОФЭКТ подвисает ... нет анимации ...
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Animation</title>
<link rel="stylesheet" href="animate.min.css">
<script src="jquery-1.9.1.js"></script>
<style>
* {padding: 0;margin: 0;}
body {background-color: #ccc;}
.tbl {
width: 300px;
height: 300px;
background-color: yellow;
margin: 0 auto;
float: left;
}
.tbl:hover {
background-color: #BBED59;
transition: all .8s;
-o-transition: all .8s;
-ms-transition: all .8s;
-moz-transition: all .8s;
-webkit-transition: all .8s;
}
.link {
display: block;
height: 100%;
text-decoration: none;
color: red;
text-align: center;
line-height: 200px;
}
.on {visibility: visible !important;}
.off {visibility: hidden;}
</style>
<script>
$(document).ready(function() {
$(".tbl").mouseenter(function() {
$(this).find(".link").addClass("animated fadeInDown on").one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend", function() {
$(".link").removeClass("animated fadeInDown");
});
});
$(".link").mouseout(function() {
$(this).removeClass("on");
});
});
</script>
</head>
<body>
<div class="tbl">
<a href="#" class="link off">TEST!!!</a>
</div>
<div class="tbl" id="tt">
<a href="#" class="link off">TEST!!!</a>
</div>
<div class="tbl" id="tt">
<a href="#" class="link off">TEST!!!</a>
</div>
</body>
</html>
подскажите что не так ?
архив с файлами на DropBox -
https://www.dropbox.com/s/uvwy1lqym5...nimat.rar?dl=0