CSS3 边框
border-radius: 圆角
border-radius: 15px 50px 70px 100px; 左上 右上 右下 左下
box-shadow:阴影
box-shadow:1px 2px 3px #ccc;
1px:水平位移
2px:竖直
border-image:边框图片
border-image: source slice width outset repeat;
border-image:url(border.png) 30 round;
用图片border.png 30出的地方 重复合理的重复
stretch:默认值。拉伸图像来填充区域
repeat:平铺(repeated)图像来填充区域
round:类似 repeat 值。如果无法完整平铺所有图像,则对图像进行缩放以适应区域。
border-image-source:于指定要用于绘制边框的图像的位置
border-image-slice:图像边界向内偏移
border-image-width:图像边界的宽度
border-image-outset:用于指定在边框外部绘制 border-image-area 的量
border-image-repeat:这个例子演示了如何创建一个border-image 属性的按钮
CSS3 背景
background-size:设置背景图标大小
background-size:80px 60px; //原图缩小为:80x60的
background-size:100% 100%;
background-Origin属性指定了背景图像的位置区域。当背景过大,或者属性为 repeat 区别可能不大
border-box:边框
padding-box:
content-box
CSS3 渐变(Gradients)
linear-gradient//线性渐变(向下/向上/向左/向右/对角方向) linear-gradient
radial-gradient//径向渐变(由它们的中心定义) radial
background: linear-gradient(direction, color-stop1, color-stop2, ...);
默认情况从上到下
background:-moz-linear-gradient(right,red,blue);/* Firefox 3.6 - 15 */
-o-liner-gradient()///* Opera 11.1 - 12.0 */
-webkit-linear-gradient()///* Safari 5.1 - 6.0 */
background:linear-gradient(to bottom right, red , blue);左上角到右下角
background:linear-gradient(to right, red, blue);//(标准语法必须在最后)标志有to 否则加前缀
使用角度
background:linear-gradient(60deg,red,blue,green)
重复的线性渐变
background: repeating-linear-gradient(red, yellow 10%, green 20%);
透明渐变
background: repeating-linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
CSS3 径向渐变
background: radial-gradient(center, shape size, start-color, ..., last-color);
center:位置 50% 50%表是居中,默认居中
shape size:从小到大()closest-side farthest-side closest-corner farthest-corner
background: -moz-radial-gradient(60% 55%, closest-side,blue,green,yellow,black);
当能设置形状的时候,就不能与设置位置 大小一起shiyo9ng
background: radial-gradient(circle, red, yellow, green);
//circle:圆形 默认:ellipse 椭圆
重复的径向渐变
background: -moz-repeating-radial-gradient(red,yellow 10%,green 15%)
background: repeating-radial-gradient(red, yellow 10%, green 15%);
颜色:rgba(R,G,B,A); A 表示透明度 0% - 100%
color:rgba(R,G,B,A)
CSS3 文本效果
text-shadow:属性适用于文本阴影
text-shadow:5px 5px 5px 类似于 box-shadow:
word-wrap属性允许长的内容可以自动换行
word-wrap: normal|break-word;
normal 只在允许的断字点换行(浏览器保持默认处理)。默认
break-word:在长单词或 URL 地址内部进行换行。
字体:
@font-face
{
font-family: myFirstFont;
src: url(sansation_light.woff);//需要下载字体
}
div{
font-family:myFirstFont;
}
@font-face{
font-family:myfont;
src:url();
}
.pyt{
font-family:myfont;
}
CSS3 2D 转换(Internet Explorer 10, Firefox, 和 Opera支持transform 属性.)
transform
div{
transform:translate()/rorate()/scale()/skew()/matrix()
}
translate()方法:根据左(X轴)和顶部(Y轴)位置给定的参数,从当前元素位置移动
transform:translate(50px,100px);
-ms-transform:translate(50px,100px);/* IE 9 */
-webkeit-transform: /* Safari and Chrome */
rotate()方法,在一个给定度数顺时针旋转的元素。负值是允许的,这样是元素逆时针旋转。
translate:rotate(30deg);顺时针转动30度
scale()方法,该元素增加或减少的大小,取决于宽度(X轴)和高度(Y轴)的参数:
translate:scale(2,4)//横向变大2倍,纵向变大4倍
skew()方法,该元素会根据横向(X轴)和垂直(Y轴)线参数给定角度:(会有扭曲的效果)
translate:skew(30deg,50deg);
matrix()方法和2D变换方法合并成一个。(等待研究)
matrix 方法有六个参数,包含旋转,缩放,移动(平移)和倾斜功能。
transform:matrix(a,b,c,d,e,f);
transform:matrix(0.586,0.8,-0.8,0.586,40,30);
a:0<a<1 如 0.586,0.686,0.786
b:0<b<1 如:0.5
c:-1<c<1 如:-0.5 旋转
d:0<d<1 倾斜
e:x轴的距离 left
f:y轴的距离相对于 top:
box-sizing:border-box;
方框大小调整(Box Sizing)
box-sizing:border-box; 定义border 的宽度不例外添加;
outline:外边框
outline-offset: 外边框的距离
outline:2px solid red;
outline-offset:15px;
过度:transition 过渡是元素从一种样式逐渐改变为另一种的效果。
transition:property duration function delay
property:css的属性
duration:定义花费时间 默认:0
function:亿什么方式实现 默认 ease
单独拿出来:
transition-timing-function:
linear:规定以相同速度开始至结束的过渡效果 cubic-bezier(0,0,1,1)
ease:规定慢速开始,然后变快,然后慢速结束的过渡效果 cubic-bezier(0.25,0.1,0.25,1)
ease-in:规定以慢速开始的过渡效果 cubic-bezier(0.42,0,1,1)
ease-out:规定以慢速结束的过渡效果 cubic-bezier(0.42,0,0.58,1)
ease-in-out:规定以慢速开始和结束的过渡效果
cubic-bezier(n,n,n,n) 在 cubic-bezier 函数中定义自己的值。可能的值是 0 至 1 之间的数值
cubic-bezie(n,n,n,n)特殊研究一下
delay:延迟多少执行
transition-delay:2s;
-webket-transition-delay:2s;
例如:transition:width 2s ease 1;
div {
width: 100px;
height: 100px;
background: red;
-webkit-transition: width 2s, height 2s, -webkit-transform 2s; /* For Safari 3.1 to 6.0 */
transition: width 2s, height 2s, transform 2s;
}
div:hover {
width: 200px;
height: 200px;
-webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
transform: rotate(180deg);
}
div发生hover事件的时候,
width:100px - 200px 需要2s中的变化
transform的反转180度也需要2s中过度
动画:@keyframes animation 通过from to 或者 50% 百分比
animation-name 属性为 @keyframes 动画指定名称。
animation-duration:规定动画完成一个周期所花费的秒或毫秒。默认是 0。
animation-timing-function:类似过度 transition-timing-function
linear:规定以相同速度开始至结束的过渡效果 cubic-bezier(0,0,1,1)
ease:规定慢速开始,然后变快,然后慢速结束的过渡效果 cubic-bezier(0.25,0.1,0.25,1)
ease-in:规定以慢速开始的过渡效果 cubic-bezier(0.42,0,1,1)
ease-out:规定以慢速结束的过渡效果 cubic-bezier(0.42,0,0.58,1)
ease-in-out:规定以慢速开始和结束的过渡效果
cubic-bezier(n,n,n,n) 在 cubic-bezier 函数中定义自己的值。可能的值是 0 至 1 之间的数值
cubic-bezie(n,n,n,n)特殊研究一下
animation-delay:规定动画什么时候开始 默认为:0
animation-iteration-count:动画执行的次数 默认为1/infinite 标识无限循环执行
animation-direction:是否循环交替反向播放动画
normal 默认 正常执行动画
reverse 动画反向播放
alternate 动画在奇数次(1、3、5...)正向播放,在偶数次(2、4、6...)反向播放。
alternate-reverse 动画在奇数次(1、3、5...)反向播放,在偶数次(2、4、6...)正向播放。
initial:设置该属性为它的默认值
inherit:从父元素继承该属性
animation-play-state: running(运行)/paused(暂停); 通过调整这个属性控制动画暂停
{background:blue;}
div
{
width:100px;
height:100px;
background:red;
animation:myfirst 5s; //通过调用myfirst
-moz-animation:myfirst 5s; /* Firefox */
-webkit-animation:myfirst 5s; /* Safari and Chrome */
-o-animation:myfirst 5s; /* Opera */
}
@keyframes myfirst{
from {background:red;}
to {background:blue;}
}
@keyframes myfirst{
0% {background:red;}
25% {background:yellow;}
50% {background:blue;}
100% {background:green;}
}
@-moz-keyframes myfirst
@-o-keyframes myfirst
@-webkit-keyframes myfirst /* Safari and Chrome */
来源:https://www.cnblogs.com/xqschool/p/6232683.html