博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[CSS3备忘] transform animation 等
阅读量:5011 次
发布时间:2019-06-12

本文共 1369 字,大约阅读时间需要 4 分钟。

一些CSS不经常用就会忘记,好吧,现在整理再学习一下,也留做备忘,方便以后查看。。。

 

perspective的理解:

  1、数值越小,用户与3D空间Z平面距离越近,视觉效果更令人印象深刻(比如看电影,越前面的人屏幕越大)

  2、数值大,用户与3D空间Z平面距离越远,视觉效果就很小

  3、数值无穷大 | 为0  == none 即:无透视

  4、perspective分为perspective属性和perspective函数,两者的区别:

      perspective属性在父元素中添加,为none | 长度值,perspective函数在子元素添加(与tranform一起使用),数值>0;

      perspective属性,有多个元素,看到的效果是不一样的,perspective函数,有多个元素,看到的效果是一样的,请见

  5、当父元素perspective:200px时,子元素transform:translateZ(200px)会辅满整个屏幕(没有设置display:hidden,如果设置会不起作用),当>200px,会看不到(以电影幕为例,人跑到电影幕后面去,看不到后面的东西)

 

perspective-original:X方向 Y方向

transform-style :preserve-3d    | transfrom:transformZ()开启3D效果

backface-visibility: visible | hidden

参考:

  1、

  2、

 

animation和transition

animation: animation-name  animation-duration  animation-timing-function  animation-delay  animation-iteration-count  animation-direction  animation-fill-mode  animation-play-state

(none 0s ease 0s 1 normal none running)

  animation-name:none

  animation-duration:0s

  animation-timing-function:ease

  animation-delay:0s

  animation-iteration-count:1 | infinite

  animation-direction:normal | reverse | alternate(交替) | reverse-alternate

  animation-fill-mode:none | forwards(最后一帧) | backwards(第一帧) | both

  animation-play-state:running | pause

 

transition:  transition-property  transition-duration  transition-timing-function  transition-delay

 

  

转载于:https://www.cnblogs.com/joya0411/p/5368508.html

你可能感兴趣的文章
【Java并发编程】之十六:深入Java内存模型——happen-before规则及其对DCL的分析(含代码)...
查看>>
团队个人冲刺第三天
查看>>
unit
查看>>
2017-10-17 NOIP模拟赛2
查看>>
How to install ia32-libs in Ubuntu 14.04 LTS (Trusty Tahr)
查看>>
ACM/ICPC 之 模拟 (HNUOJ 13391-换瓶模拟)
查看>>
JavaWeb学习——JSP基础
查看>>
Eclipse tomcat server 无法添加项目
查看>>
黑寡妇黄飞鸿
查看>>
leetcode 217 Contains Duplicate 数组中是否有重复的数字
查看>>
The Ctrl & CapsLock `problem'
查看>>
MyBatis学习总结(二)——使用MyBatis对表执行CRUD操作
查看>>
linux故障判断
查看>>
Leetcode 23. Merge k Sorted Lists(python)
查看>>
Java进阶知识点6:并发容器背后的设计理念 - 锁分段、写时复制和弱一致性
查看>>
Makefile ===> Makefile 快速学习
查看>>
face detection[HR]
查看>>
java性能调优工具
查看>>
C# 其他的Url 文件的路径转化为二进制流
查看>>
cmake使用
查看>>