-
学习目标:查看全部
-
旋转rotate属性的时候,添加transform-origin:0 0 就是等于从零角度开始,如果不设置就是默认 从中心点开始旋转查看全部
-
利用@media实现响应式布局查看全部
-
figure标签、 figcaption标签查看全部
-
link 标签查看全部
-
1、HTML5标签: figure 规定独立流内容(图片、代码等) figcaption figure元素标题 2、CSS3内容: transform: translate ------ 平移 translate(x,y) rotate ----------- 旋转 rotate(90deg) 正值顺时针 transform-origion:0 0 ; 旋转点,默认center scale ------------缩放 scale(0.5,0.5) scale(x,y) skew --------------- 斜切扭曲 skew(50deg,20deg) skew(x,y) 3、CSS3内容: transition: property ------------- 检索或设置对象中的参与过渡的属性: all transform 等 duration:过渡动画的持续时间 timing-function:检索或设置对象中过渡的动画类型(Linear,ease,ease-in,ease-out,ease-in-out) delay:检索或设置对象中延迟过渡的时间 4、媒体查询: @media screen and (width:800px){....} @import url(example.css) screen and (width:800px) <link media="screen and (width:800px)" rel="stylesheet" href="example.css" />查看全部
-
figure和figcaption查看全部
-
css3图片动态提示效果查看全部
-
transform讲解查看全部
-
transition 属性 property 检索或设置对象中的参与过渡的属性,duration 过渡动画的持续时间, timing-function。检索或设置对象中过渡的动画类型,(linear,ease,ease-in,ease-out,ease-in-out)。delay 检索或设置对象延迟过渡的时间。查看全部
-
translate,rotate,scale,skew,平移,旋转,缩放,斜切查看全部
-
figure以及figcaption标签的用法: <figure> <img src=""> <figcaption>figcaption</figcaption> </figure>查看全部
-
transition。。查看全部
-
媒体查询的三种方式查看全部
-
transition1查看全部
举报
0/150
提交
取消