1、边框圆角属性:border-radius,取值可以是 百分比 / 自定义长度,不可以取负值。如果是圆,将高度和宽度设置相等,并且将border-radius设置为100%
2、IE6,IE7,IE8,opera,firfox-2.0等浏览器,不支持边框的圆角效果。我们可以用图片来做。
3、为了克服有的浏览器不能显示某些属性设置的效果,可以专门设置使其识别,如火狐浏览器是 -moz-,谷歌浏...
分类:
Web程序 时间:
2014-10-17 22:02:51
阅读次数:
249
1在代码中添加文字阴影TextView 有一个方法/** * Gives the text a shadow of the specified radius and color, the specified * distance from its normal position. * * @...
分类:
移动开发 时间:
2014-10-16 16:58:52
阅读次数:
197
大家知道对于一个稍具规模的公司来说,网络设备几乎都在几十台到上百台,对于日常的管理来说如果只通过本地账号管理设备登陆是非常繁琐的,尤其是网络工程师流动性比较大的公司。对于入离职流程过程中的账号增删改不是一个小的工作量,所以我们就需要一个统一的登陆方式比如通..
Time Limit: 1sec Memory Limit:32MBDescriptionCylinders (e.g. oil drums) (of radius 1 foot) are stacked in a rectangular bin. Each cylinder on an uppe....
分类:
其他好文 时间:
2014-10-14 16:02:08
阅读次数:
227
原文地址【http://www.w3cfuns.com/blog-5402109-5400903.html】1、鼠标放在圆形图片中,图片渐渐的变方形【17素材头像的特效,觉得不错就研究下来了 ————17sucai.com】img{border-radius:50%;transition: all ...
分类:
Web程序 时间:
2014-10-13 18:15:31
阅读次数:
209
1、border-radius有bug,围不住background描述:设置了border-radius后,背景色依然会从圆角里冒出来解决方法:在设置了border-radius的容器加上background-clip:padding-box;一定要把background样式提到background...
分类:
移动开发 时间:
2014-10-10 22:30:14
阅读次数:
147
@property有什么用呢?表面看来,就是将一个方法用属性的方式来访问.
上代码,代码最清晰了.
class Circle(object):
def __init__(self, radius):
self.radius = radius
@property
def area(self):
return 3.14 * self.rad...
分类:
编程语言 时间:
2014-10-09 19:10:07
阅读次数:
193
CSS3 圆角(border-radius)-moz(例如 -moz-border-radius)用于Firefox-webkit(例如:-webkit-border-radius)用于Safari和Chrome。 example: .user-face img{ -moz-borde...
分类:
Web程序 时间:
2014-10-09 15:38:43
阅读次数:
211
1、鼠标放在圆形图片中,图片渐渐的变方形【17素材头像的特效,觉得不错就研究下来了 ————17sucai.com】img{border-radius:50%;transition: all .4s ease-out;}a:hover img{border-radius:0px;}2、当鼠标放到菜单...
分类:
Web程序 时间:
2014-10-08 17:41:05
阅读次数:
251
1、鼠标放在圆形图片中,图片渐渐的变方形【17素材头像的特效,觉得不错就研究下来了 ————17sucai.com】img{border-radius:50%;transition: all .4s ease-out;}a:hover img{border-radius:0px;}2、当鼠标放到菜单...
分类:
Web程序 时间:
2014-10-08 13:55:45
阅读次数:
224