Possible to fade out div border?

后端 未结 5 2200
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-10 16:08

I know you can fade out a

with jQuery, but I was wondering if it\'s possible to fade out a border for a
?

So I\'ve g

5条回答
  •  隐瞒了意图╮
    2020-12-10 16:20

    You need to use jQuery UI for that (color animation):

    $(".confession").animate({
       borderLeftColor: "white",
       borderTopColor: "white",
       borderRightColor: "white",
       borderBottomColor: "white",
    }, 3000);
    

    (it's not working with borderColor and as for "transparent" it fades to white anyway)

    http://jsfiddle.net/Jacek_FH/kxCht/3/

    plugin with the similar (same?) capability:

    http://docs.jquery.com/Release:jQuery_1.2/Effects#Color_Animations

提交回复
热议问题