[html5]css做图片的圆角方法附源代码
[html5]css做图片的圆角方法附源代码
效果展示
实现代码
- <!DOCTYPE html>
- <html>
- <head>
- <title>JcMan</title>
- <style type="text/css">
- .image1{
- margin-top: 100px;
- width:200px;
- height:200px;
- border-radius:200px;
- }
- .image2{
- margin-top: 100px;
- width:200px;
- height:200px;
- border-radius:20px;
- }
- </style>
- </head>
- <body>
- <center>
- <img class="image1" src="http://www.xxx.com/image/pic/item/pic01.jpg"/>
- <img class="image2" src="http://www.xxx.com/image/pic/item/pic01.jpg" />
- </center>
- </body>
- </html>
http://blog.csdn.net/china_skag/article/details/70145954
热门文章推荐
- 10款html5网页播放器推荐(总有一款适合你)
- [html5]html5+css3实现图片斜角切成直角梯形显示的源代码
- [HTML5]HTML5视频video时间事件代码
- [微信]iOS苹果和微信中音频和视频实现自动播放的方法
- [html5]html5视频全屏实现的源代码
- [Html5]mobile-agent移动Agent,就是具有移动性的智能Agent
- [html5]视频播放器js控制vedio视频和分段播放
- [html5]H5播放器:竖屏播放\横屏播放\跟随旋转例子
请稍候...