兼容所有浏览器的CSS3圆角

 

在各个浏览器中实现圆角的较简单快速的方案是结合CSS3和JavaScript。

CurvyCorners是一个为HTML元素创建漂亮的圆角的免费JavaScript库。效果如下:

该脚本的最大优势是可以在Safari/Chrome/Firefox中使用原生的CSS3属性(通过-webkit-border-radius-moz-border-radius私有属性分别支持)而在IE和Opera中使用JavaScript。

你所需要做的就是在页面中引入curvycorners.js:

<script type= "text/javascript" src= "curvycorners.js" ></script>

然后定义以下样式:

.roundedCorners{
width : 220px ;
padding : 10px ;
background-color: #DDEEF6 ;
border : 1px solid #DDEEF6 ;

/* Do rounding (native in Safari, Firefox and Chrome) */
-webkit-border-radius : 6px ;
-moz-border-radius : 6px ;
}

然后在上面的样式后面定义以下代码:

<script type= "text/JavaScript" >
addEvent ( window , 'load' , initCorners );
function initCorners () {
var setting = {
tl : { radius: 6 },
tr : { radius: 6 },
bl : { radius: 6 },
br : { radius: 6 },
antiAlias : true
}
curvyCorners (setting, ".roundedCorners" );
  }
</script>

tl, tr, bl, br分别是:左上角(top-left)、右上角(top-right)、左下角(bottom-left)、右下角(bottom-right)。

如果你有不同的CSS类(例如roundedCornersroundedCorners_1roundedCorners_2等)你可以像这样在前面的代码中定义:

  1. ...<br> 
  2. curvyCorners<span style="color: rgb(0, 0, 153); font-weight: bold;">(</span> 
  3. setting, <span style="color: rgb(51, 102, 255);">".roundedCorners"</span> 
  4. <span style="color: rgb(0, 0, 153); font-weight: bold;">);<br> 
  5. </span> 
  6. curvyCorners<span style="color: rgb(0, 0, 153); font-weight: bold;">(</span> 
  7. setting, <span style="color: rgb(51, 102, 255);">".roundedCorners_1"</span> 
  8. <span style="color: rgb(0, 0, 153); font-weight: bold;">);<br> 
  9. </span> 
  10. curvyCorners<span style="color: rgb(0, 0, 153); font-weight: bold;">(</span> 
  11. setting, <span style="color: rgb(51, 102, 255);">".roundedCorners_2"</span> 
  12. <span style="color: rgb(0, 0, 153); font-weight: bold;">);</span> 
  13. <br> 
  14. ... 
...

curvyCorners(
setting, ".roundedCorners"
);


curvyCorners(
setting, ".roundedCorners_1"
);


curvyCorners(
setting, ".roundedCorners_2"
);


...

HTML代码如下:

<div class= "roundedCorners" > </div>

这就是在各个浏览器中的效果:

我认为这的确是在各个浏览器中比较简单和快速的实现CSS3圆角的一种方案。但是,如果js脚本被浏览器禁用了怎么办?最靠谱的方案还是使用额外的 使用背景图片的CSS类来实现,或者使用额外的空白标签(Google统计中使用的方法,没有遇到的可以Google一下)。你有更好更简单的方案吗?欢 迎留言给我们,多谢!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值