学习记录
2019,07,18
1,生成随机数函数:
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1) + min)
}
2,audio
timeupdate事件:currentTime实时改变
ended事件:做一些结束播放的操作
3,js event参数:window.event event.target(当前事件对应的对象)
4,getBoundingClientRect用于获取某个元素相对于视窗的位置集合。集合中有top, right, bottom, left等属性。
5,object-fit
网友评论