会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
https://github.com/lianbinghua
连冰华
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
9
10
11
12
13
14
15
16
下一页
2014年9月4日
改变 select下拉框 样式
摘要: select{outline: none;text-indent: 10px;height: 45px;line-height: 45px;width: 100%;border:1px solid #c0c3c8;border-radius: 5px;display: inline-block;fo...
阅读全文
posted @ 2014-09-04 17:47 连冰华
阅读(218)
评论(0)
推荐(0)
2014年9月3日
移动web开发总结
摘要: 1、-webkit-tap-highlight-color:rgba(255,255,255,0)可以同时屏蔽ios和android下点击元素时出现的阴影。备注:transparent的属性值在android下无效。2、-webkit-appearance:none可以同时屏蔽输入框怪异的内阴影。3...
阅读全文
posted @ 2014-09-03 12:37 连冰华
阅读(162)
评论(0)
推荐(0)
2014年8月21日
animation-play-state
摘要: animation-play-state:css:.play-state{ -webkit-animation:f1 2s 0.5s infinite linear forwards alternate; -moz-animation:f1 2s 0.5s infinite line...
阅读全文
posted @ 2014-08-21 11:13 连冰华
阅读(181)
评论(0)
推荐(0)
animation-fill-mode
摘要: animation-fill-mode:none:默认值。不设置对象动画之外的状态forwards:结束后保持动画结束时的状态,但当animation-direction为0,则动画不执行,持续保持动画开始时的状态backwards:结束后返回动画开始时的状态both:结束后可遵循forwards和...
阅读全文
posted @ 2014-08-21 10:58 连冰华
阅读(240)
评论(0)
推荐(0)
2014年8月20日
css3 media queries
摘要: 使用max-width @media screen and (max-width:600px){//你的样式放在这里....}使用min-width @media screen and (min-width:900px){//你的样式放在这里...}max-width和min-width...
阅读全文
posted @ 2014-08-20 16:03 连冰华
阅读(184)
评论(0)
推荐(0)
2014年8月18日
三列,左右两列宽度固定,中间宽度自适应
摘要: body{ margin:0;} #wrapper{ height: 300px; overflow: hidden; } .left{ width: 200px; height: 100%; background: red; float: left; } .rig...
阅读全文
posted @ 2014-08-18 11:22 连冰华
阅读(238)
评论(0)
推荐(0)
两列布局,一列定宽,一列宽度自适应
摘要: 方法一:body{ margin: 0;}.container{ height: 300px; overflow: hidden;}.left{ width: 200px; height: 300px; background: red; position: absolute; left:0; top...
阅读全文
posted @ 2014-08-18 11:14 连冰华
阅读(486)
评论(0)
推荐(0)
2014年8月15日
css3 animation
摘要: animation:animation-name | animation-duration | animation-timing-function | animation-delay | animation-iteration-cout | animation-direction | a...
阅读全文
posted @ 2014-08-15 17:26 连冰华
阅读(193)
评论(0)
推荐(0)
transition和animation区别
摘要: Transform:对元素进行变形;Transition:对元素某个属性或多个属性的变化,进行控制(时间等),类似flash的补间动画。但只有两个关键贞。开始,结束。Animation:对元素某个属性或多个属性的变化,进行控制(时间等),类似flash的补间动画。可以设置多个关键贞。Transiti...
阅读全文
posted @ 2014-08-15 16:57 连冰华
阅读(359)
评论(0)
推荐(0)
transform 和 transition
摘要: transform的属性包括:rotate() / skew() / scale() / translate() /matrix()其中 rotate() 旋转度数,0-360 skew() 元素翻转给定的角度,根据给定的水平线(X 轴)和垂直线(Y 轴)参数 translate()元素从其...
阅读全文
posted @ 2014-08-15 16:54 连冰华
阅读(343)
评论(0)
推荐(0)
上一页
1
···
9
10
11
12
13
14
15
16
下一页
公告