【发布时间】:2017-10-12 04:28:39
【问题描述】:
我有这个脚本
$(document).ready(function() {
$('.profilecaption').hide();
$('.profileimg').hover(
function() {
$(this).find('figcaption').show();
$(this).find('figcaption').addClass('animated zoomInUp');
},
function() {
$(this).find('figcaption').addClass('animated zoomOutLeft');
$(this).find('figcaption').hide();
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<figure class="profileimg d-inline-block">
<img class="img-thumbnail" src="http://via.placeholder.com/200x200?text=1">
<figcaption class="profilecaption"><p>1</p></figcaption>
</figure>
<figure class="profileimg d-inline-block">
<img class="img-thumbnail" src="http://via.placeholder.com/200x200?text=2">
<figcaption class="profilecaption"><p>2</p></figcaption>
</figure>
所以,如果您在上面看到我的 jquery,我想 show 和 hide figcaption。显示和隐藏很简单,但现在我想在hover event 中使用animate.css。
从我的脚本来看,工作部分只在ZoomOutLeft,所以我看不到zoomInUp 动画。那么我该如何解决呢?提前感谢,对不起我的英语不好。
【问题讨论】:
标签: javascript jquery bootstrap-4 animate.css