美文网首页
前端学习记录

前端学习记录

作者: Emmakaiqin | 来源:发表于2019-07-18 16:18 被阅读0次

学习记录

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

相关文章

网友评论

      本文标题:前端学习记录

      本文链接:https://www.haomeiwen.com/subject/uhtvjxtx.html