jQuery Corner 是一个用于创建漂亮圆角效果的jQuery插件。不需要用到图片或其它特殊的标签。最常用的就是把边角修饰成圆角。
实例:
<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript" src="jquery.corner.js"></script>
<div class="testCorner" style="width:200px; height:100px; border:3px solid red ; background-color:#0000FF;color:#00FF00;line-height:100px;">
$(this).corner("10px");
</div>
<script type="text/javascript">
// className:testCorner
$('.testCorner').corner("10px");
</script>
效果图1:
效果图2
效果图3