jQuery动画边框颜色悬停?

前端之家收集整理的这篇文章主要介绍了jQuery动画边框颜色悬停?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用 color plugin在悬停时动画背景颜色。
$(function() {
    $('.listing-2 li a').mouSEOver(function() {
        $(this).animate({
            backgroundColor: "#0e7796"
        },'fast');
    });
    $('.listing-2 li a').mouSEOut(function() {
        $(this).animate({
            backgroundColor: "#d6f2c5"
        },'fast');
    });
});

边框颜色怎么做同样的?

@R_502_323@

发现在谷歌
$('.listing-2 li a').mouSEOver(function() {
    $(this).animate({ borderTopColor: "#0e7796" },'fast');
});
$('.listing-2 li a').mouSEOut(function() {
    $(this).animate({ borderTopColor: "#fff" },'fast');
});

它必须是“borderTopColor”(或左,右,底部)而不是“borderColor”。

原文链接:https://www.f2er.com/jquery/181766.html

猜你在找的jQuery相关文章