源码:http://download.csdn.net/detail/liumingm900913/7469969 游戏开发流程:1、创建画布:将画布放在div标签里面,这样能够控制画布居中的位置,再对div标签加上一些样式比方border和border-radius,这样一来使其看上去像手机,利....
分类:
Web程序 时间:
2014-07-03 22:33:51
阅读次数:
345
span{ display: block; background: #f4f4f4; color: #333; font-size: 14px; -webkit-border-radius: 20px; border-radius: 20px; text-a...
分类:
其他好文 时间:
2014-07-02 18:38:23
阅读次数:
473
http://stackoverflow.com/questions/7991086/iphone-core-animation-drawing-a-circle// Set up the shape of the circleint radius = 100;CAShapeLayer *circl...
分类:
移动开发 时间:
2014-07-01 22:36:06
阅读次数:
679
原文:几个常用的CSS3样式代码以及不兼容的解决办法border-radius实现圆角效果1 CSS3代码:2 3 -webkit-border-radius:10px;4 -moz-border-radius:10px;5 border-radius:10px;6 background-color...
分类:
Web程序 时间:
2014-07-01 17:01:55
阅读次数:
361
收集一些css的生成工具,开发中可以直接拿过来用。特别是那些css3中的一些新的特性。 1 css渐变背景在线生成工具 http://www.colorzilla.com/gradient-editor/ 2 css3圆角在线生成工具 http://border-radius.com/ 3 网格布局...
分类:
Web程序 时间:
2014-07-01 00:19:10
阅读次数:
244
border-radius实现圆角效果1 CSS3代码:2 3 -webkit-border-radius:10px;4 -moz-border-radius:10px;5 border-radius:10px;6 background-color:#666;7 width:200px;height...
分类:
Web程序 时间:
2014-06-30 22:45:40
阅读次数:
367
aaaconfig Configure RADIUS for AAA servicesad Specifies all administration domain (AD)-level operationsag Configure the Access Gateway featureagshow D...
分类:
其他好文 时间:
2014-06-28 17:23:01
阅读次数:
362
现代浏览器基本支持CSS3,但是一些旧版本的浏览器还是需要添加前缀的。像box-shadow,border-radius这类属性,目前较新版本的浏览器都是不需要前缀的(包括IE9),但是,有些CSS3属性,例如渐变,前缀少不了,每次都需要像盖高楼一样堆叠CSS3代码,如下图:.bg { ...
分类:
Web程序 时间:
2014-06-27 00:28:59
阅读次数:
473
cvCircle(CvArr*img, CvPointcenter, intradius, CvScalarcolor, intthickness=1, intlineType=8, intshift=0)img为图像指针,单通道多通道都行,不须要特殊要求center为画圆的圆心坐标radius为圆...
分类:
其他好文 时间:
2014-06-26 21:58:54
阅读次数:
299
最近做东西碰到要根据两点经纬度计算之间的直线距离,就网上找了查了下资料。因为这类接触的比较少,就直接找现成的代码了,没怎么研究。代码如下,作为记录。private const double EARTH_RADIUS = 6378.137;//地球半径private static double rad...
分类:
Web程序 时间:
2014-06-24 18:25:01
阅读次数:
213