// Vertical gradient using CSS where possible, and base64-encoded SVG for IE9 (enables use of this in combination with border-radius)// Based on this ...
分类:
其他好文 时间:
2014-07-16 23:04:10
阅读次数:
177
本鱼表示偶已经不会取标题了。。。当时写这篇文章主要是想探讨一下优雅降级和渐进增强的区别,按照正常的逻辑思维,不管是降级还是增强,应该对于效果是没什么区别的,因为后者会覆盖前者,但今天无意看到张鑫旭的一篇文章,关于CSS3属性的书写顺序(10年的,原谅我的孤陋寡闻T_T),标准的css3属性和带web...
分类:
Web程序 时间:
2014-07-09 15:47:06
阅读次数:
214
第1章 初识CSS3
CSS3课程列出第一站,先带领大家进入CSS3的世界,探索CSS3的魅力!你做好准备了吗?
第2章 边框
本课程主要讲解border-color 、border-image 、border-radius 及box-shadow 相关知识
第3章 颜色相关
学习CSS3中与颜色有关的属性,包括RGBA colors和Gradient,来实现在此...
分类:
Web程序 时间:
2014-07-08 20:49:19
阅读次数:
219
效果如下: 代码: public class OffcutView extends View { private String Text ="";// private int textSize = 22; private int radius=6; public ChampionShipOffcut...
分类:
移动开发 时间:
2014-07-06 23:18:35
阅读次数:
212
源码: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