一、display: none 隐藏 block显示 visibility:hidden隐藏 visible显示display:none和visibility:hidden这两个属性对应的值都是隐藏对像,但是它们隐藏对像有点区别。display和visibility的区别:display隐藏相当于....
分类:
Web程序 时间:
2015-08-04 18:34:36
阅读次数:
186
关于xml中经常用到边框及边框效果,在此进行一下总结。
3.border(边框及边框效果)
(1)直角边框线
android:layout_width="200dp"
android:layout_height="30dp"
android:layout_margin="10dp"
android:orient...
分类:
移动开发 时间:
2015-07-30 19:34:39
阅读次数:
286
self.label1.layer.borderWidth=1;//边框宽度 //self.label1.layer.cornerRadius=5;//边框圆角 CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); C...
分类:
其他好文 时间:
2015-07-23 11:55:38
阅读次数:
98
1,圆角效果 border - radiusborder - radius 是向元素添加圆角边框。使用方法:border - radius : 10px /* 所有角都使用半径为10px的圆角 */border - radius : 5px 4px 3px 2px; /* 四个半径值分别是左上角、右...
分类:
Web程序 时间:
2015-07-17 02:00:25
阅读次数:
179
设置corners_bg.xml
设置边框圆角可以在drawable-mdpi目录里定义一个xml:
[html]
android:topRightRadius="10dp"
android:bottomR...
分类:
移动开发 时间:
2015-06-19 10:26:42
阅读次数:
161
iOS之给button加边框 . 圆角弧度 . 加阴影 avatarImage = [UIButton buttonWithType:UIButtonTypeCustom]; //给按钮加一个白色的板框 avatarImage.layer.borderColor = [[UIColor whiteColor] CGColor]; avatarImage.la...
分类:
移动开发 时间:
2015-05-25 14:38:55
阅读次数:
249
语法border-radius:length|percentage {1,4}
length : 用长度值设置对象的圆角半径长度。不允许负值
percentage : 用百分比设置对象的圆角半径长度。不允许负值
{1,4}是说该属性支持1~4参数值;
参数解释
一个参数:
所有半径相等,顺时针,自左上角到左下角
两个参数:对角相等.第一个参数:左上角=右下角;
第二个参数:右上角=左下角
三个参数...
分类:
Web程序 时间:
2015-05-15 19:56:51
阅读次数:
199
.talk .text { margin-right: 15px; background-color: #80BAF8; box-shadow: #666 -2px 2px 2px; border-radius: 5px; -moz-bord...
分类:
其他好文 时间:
2015-05-13 12:02:26
阅读次数:
97
设置边框圆角可以在drawable-mdpi目录里定义一个xml:
<corners android:topLeftRadius="10dp"
android:topRightRadius="10dp"
android:bottomRightRadius="10dp"
...
分类:
移动开发 时间:
2015-04-23 19:57:32
阅读次数:
148
CardView 属于Support v7 里面的新的Widget. 扩展于FrameLayout,
UI显示主要包括
1.边框圆角
2.有阴影Shadow
用来突出个性,比如展览,相册等。
主布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tool...
分类:
移动开发 时间:
2015-04-22 18:14:12
阅读次数:
307