前端训练营第九周学习总结

2020-06-10  本文已影响0人  多米帕帕

动画

Animation

@keyframes mykf
{
    from { background: red; }
    to {background: yellow; }
}
div
{
    animation: mykf 5s infinite;
}

属性

The animation shorthand property applies an animation between styles.

@keyframes mykf
{
    0% { top: 0; transition:top ease }
    50% { top: 30; transition:top ease-in }
    75% { top: 10; transition:top ease-out }
    100% { top: 0; transition:top linear }
}

Transition

优点是可精细控制每个属性的变换

Timing fuction

css timing fuction 只有cubic-bezier 是以时间为横轴,被变换属性百分比为纵轴的函数曲线,有起始点、终点和两个控制点。

系统推荐特例曲线有一下几个

cubic-bezier曲线可以拟合

渲染与颜色

CMYK与RGB

HSL与HSV

形状

data uri + svg 搞定一切矢量图 做bg

css作业

body.getComputedStyle

HTML

quot
amp
lt
gt

语义

DOM API

整体分三类 Dom Tree、Events、Range
节点:文本节点 元素节点

导航类操作

修改类操作

重点

1.所有的dom元素默认只有一个父元素,不能被插入到两个位置,如果需要把某元素从a位置换到b位置,不需要手动将其从a位置摘除,直接插入到b位置即可;
2.childNodes是living的collection,实时根据dom操作而变化;

高级操作

事件

上一篇下一篇

猜你喜欢

热点阅读