码迷,mamicode.com
首页 > 其他好文 > 详细

10.14课堂内容

时间:2014-10-14 23:59:59      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:io   ar   for   sp   div   on   ad   ef   line   

颜色渐变:

/*渐变的类型? (linear)
渐变开始的X Y 轴坐标(0 0 – 或者left-top)
渐变结束的X Y 轴坐标(0 100% 或者left-bottom)
开始的颜色? (from(red))
结束的颜色? (to(blue))*/

background: -webkit-gradient(linear, 0% 10%, 0% 100%, from(yellow), to(blue));

阴影效果:

text-shadow:10px 10px 5px blue; 

                   X轴  Y轴 模糊度 颜色

背景填充:

background:-webkit-gradient(linear,left top,left bottom,from(#faa));

=

background:#faa;

触动效果:

.xx:hover{
/*width: 100px;*/
/*height: 50px;*/
-webkit-animation: 1.5s zzq infinite;
}
@-webkit-keyframes zzq {
from { -webkit-transform: none;
/*-webkit-transform:rotate(10deg);*/}
25% { -webkit-transform:rotate(-30deg);}
/*50% { -webkit-transform:rotate(0deg);}*/
75%{ -webkit-transform:rotate(30deg);}
/*100%{ -webkit-transform:rotate(30deg);}*/

翻转效果:

xx(如div) {
/*/翻转*/
-webkit-box-reflect:below -20px;

             和文字距离

}
.xx {
/*/翻转*/
-webkit-box-reflect:below 2px -webkit-linear-gradient(transparent,transparent 20%,rgba(10,10,10,0.2));

10.14课堂内容

标签:io   ar   for   sp   div   on   ad   ef   line   

原文地址:http://www.cnblogs.com/chenjiren0109/p/4025317.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!