标签: css3
CSS3 中关于 *-of-type 和 *-child的差异性及适用场景
2019-05-16
CSS3 中有很多表示元素序号的选择器,有以下几种
:first-child
、:first-of-type
、:last-of-type
、:only-of-type
、:only-child
、:nth-child(n)
、:nth-last-child(n)
、:nth-of-type(n)
、:nth-last-of-type(n)
、:last-child
CSS3 元素出现动画实例
2019-04-16
css3中实现动画一般有两种方式,一个是transition
过渡,一个是animation
动画。最主要区别就是transition
需要条件触发,通常会用hover
来触发,而animation
则更灵活,可以自动播放,也可以通过条件触发。