如何使用 Jquery 通过向上滑动转换更改悬停图像?我在互联网上搜索过,但找不到有效的代码。我发现的所有代码都使用淡入或淡出。非常感谢!
这是我找到的代码,但它使用淡入淡出:
<script>
$(function() {
$('.change').mouseenter(function(){
$(this).slideUp('fast', function(){
$(this).attr('src', $(this).data('on'));
$(this).fadeIn();
});
});
$('.change').mouseleave(function(){
$(this).slideUp('fast', function(){
$(this).attr('src', $(this).data('off'));
$(this).fadeIn();
});
});
});</script>
和 html:
<img class="change" src="images/portofoliu/next.gif" data-on="images/portofoliu/prev.gif" data-off="images/portofoliu/next.gif">