css3实现半圆和圆效果
程序员文章站
2022-05-18 21:15:17
border-radius 不但可以定义圆半径和圆角大小,还可以画出各种方向的半圆。 ......
在css2中,如果需要失效一些圆角或者半圆等等效果,一般是要通过ps等软件来处理的,在css3中,则不需要了,只需要通过border-radius就可以实现,大大方便了开发的效率。
无论圆角、圆弧、实心圆、半圆,css3的实现代码都是 border-radius 属性,border-radius 不但可以定义圆半径和圆角大小,还可以画出各种方向的半圆。
1 <!doctype html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>css3</title> 7 <style> 8 *{margin:0;padding:0;} 9 ul li{list-style:none;float:left;margin-left:20px;margin-top:50px;text-align:center;} 10 li{background:red;} 11 .circle1{width:100px;height:50px;border-radius:50px 50px 0 0;line-height:50px;} 12 .circle3{width:100px;height:50px;border-radius:0 0 50px 50px;line-height:50px;} 13 .circle2{width:50px;height:100px;border-radius:0 50px 50px 0;line-height:100px;} 14 .circle4{width:50px;height:100px;border-radius: 50px 0 0 50px;line-height:100px;} 15 .circle5{width:100px;height:100px;border-radius: 50px;line-height:100px;} 16 </style> 17 </head> 18 <body> 19 <ul> 20 <li class="circle1">上边圆</li> 21 <li class="circle2">左边圆</li> 22 <li class="circle3">下边圆</li> 23 <li class="circle4">左边圆</li> 24 <li class="circle5">全圆</li> 25 </ul> 26 </body> 27 </html>
效果如下:
上一篇: 匿名函数,内置函数
下一篇: 小程序七十二变之多余文本省略号显示
推荐阅读
-
CSS3如何实现2D转换和3D转换,他们有何区别_html/css_WEB-ITnose
-
jQuery和canvas实现的球体平抛及颜色动态变换效果
-
Android中listview和imageview实现条目单选效果
-
css3如何实现过渡动画的效果?css3过渡效果的实现方法
-
css3图片旋转如何实现?css3实现图片旋转动画效果的方法
-
android高仿小米时钟(使用Camera和Matrix实现3D效果)
-
RecyclerView进阶:使用ItemTouchHelper实现拖拽和侧滑删除效果
-
Android自定义View圆形和拖动圆、跟随手指拖动效果
-
Android实现ImageView阴影和图层效果
-
Android中listview和imageview实现条目单选效果