如图所示:
我想用jquery实现鼠标经过时边框效果,还有就是如何实现圆角边框效果。请各位帮帮忙。
------解决方案--------------------
圆角边框
http://aliceui.com/1px-round-corner/
------解决方案--------------------
鼠标移上去效果
$("img").hover(function(){
$(this).css("border","2px solid blue")
});
------解决方案--------------------
<a class="sl-rc">
<span class="sl-rc-cnt">
context
</span>
</a>
样式没有给出吧。
------解决方案--------------------
CSS即可实现
------解决方案--------------------