动画
css样式提供了运动
过渡的属性transition 从一种情况到另一种情况叫过渡
transition:attr time linear delay
Attr 是变化的属性
TIME 是花费的时间
Linear 变化的速度
Delay 是延迟
复习 background:url()no-repeat 50% 50% red
Background-image
Background-repeat
Background-position
Background-color
(2)js提供的运动
元素的client offset scroll 三个系列
clientWidth/clientHeight/clientTop/clientLeft
offsetWidth/offsetHeight/offsetLeft/offsetTop/offsetParent
scrollWidth/scrollHeight/scrollTop/scrollLeft
这十三个属性,前面是一个只读属性,scrolltop和scrollleft是即可读也可写
获取浏览器的body属性是有兼容的
scrolltop和scrollleft的最小值是0
获取body的整个文档的高
获取浏览器一个屛幕的高
window下的俩个事件
onscroll 当滚动条滚动的时候触发
onrsize 当窗口发生改变时触发