上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 35 下一页
摘要: /*在p之后插入我是好人*/ p.first:after { content: "好人" } /*在p之前插入亲爱的朋友men*/ p:before { content: "亲爱的朋友men" } /*设置第一个p元素*/ p:first-child{ /*background-color: yellow;*/ } /*设置最后一个p元素 等价于:p:n... 阅读全文
posted @ 2017-08-15 14:17 新年新气象 阅读(206) 评论(0) 推荐(0)
摘要: css设置背景: css设置文本: 文本间隔: 默认值 none 对文本不做任何改动,将使用源文档中的原有大小写。顾名思义,uppercase 和 lowercase 将文本转换为全大写和全小写字符。最后,capitalize 只对每个单词的首字母大写。 nderline 会对元素加下划线,就像 H 阅读全文
posted @ 2017-08-14 15:50 新年新气象 阅读(198) 评论(0) 推荐(0)
摘要: html乱码:在head标签中加入: CSS选择器: 元素选择器: 分组选择器:h2 和 p都有效 属性选择器: 后代选择器:h1里面的em有效,不管em在h1里面嵌套了多少层 如果希望父元素的第一层子元素,可以使用: 类选择器:class=center有效 id选择器: 相邻兄弟选择器,用一个结合 阅读全文
posted @ 2017-08-14 12:21 新年新气象 阅读(201) 评论(0) 推荐(0)
摘要: 我自己的总结: 别人转载:http://www.cocoachina.com/ios/20160727/17199.html 一.大小动画(改变frame) 1.展示效果 fram大小变化 2.Show Code 1 2 3 4 5 6 7 8 9 10 11 -(void)changeFrame{ 阅读全文
posted @ 2017-08-10 14:41 新年新气象 阅读(203) 评论(0) 推荐(0)
摘要: 一、监听屏幕旋转方向 在处理iOS横竖屏时,经常会和UIDeviceOrientation、UIInterfaceOrientation和UIInterfaceOrientationMask这三个枚举类型打交道,它们从不同角度描述了屏幕旋转方向。 1、UIDeviceOrientation:设备方向 阅读全文
posted @ 2017-08-09 10:26 新年新气象 阅读(1690) 评论(0) 推荐(0)
摘要: SystemAnimationViewController *system = [SystemAnimationViewController new]; CATransition *animation = [CATransition animation]; animation.duration = 0.5; // animation.subtype = UI... 阅读全文
posted @ 2017-08-07 14:33 新年新气象 阅读(248) 评论(0) 推荐(0)
摘要: 使用: 阅读全文
posted @ 2017-08-04 16:31 新年新气象 阅读(1235) 评论(0) 推荐(0)
摘要: @interface ViewController () { dispatch_source_t _timer; } @property (weak, nonatomic) IBOutlet UILabel *timeLab; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoa... 阅读全文
posted @ 2017-08-04 14:40 新年新气象 阅读(129) 评论(0) 推荐(0)
摘要: 手机号验证 是否是移动号码 是否是联通号码 是否是电信号码 邮箱验证 将手机号中特定位置替换为*号 6~16位数字、字母、下划线组成的密码格式校验 //身份证验证 阅读全文
posted @ 2017-08-04 10:08 新年新气象 阅读(236) 评论(0) 推荐(0)
摘要: 当 iOS系统版本 <= iOS7时 , 只能跳转到 系统设置页面 ,楼主试了下,非真机是没有任何效果的 当iOS系统版本 < iOS 10.0 时 NSURL *url= [NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]; if( [[UI 阅读全文
posted @ 2017-08-03 12:27 新年新气象 阅读(1641) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 35 下一页