2020/10/15

html5 video 画中画

var a = document.getElementsByTagName("video") 1、进入画中画 a[0].requestPictureInPicture() 2、退出画中画 document.exitPictureInPicture() 3、监听进入 a[0].onenterpictur…

  • html JavaScript
  • 2020/10/15
  • 1,001
  • 2020/9/28

    window.requestAnimationFrame

    window.requestAnimFrame = (function() {                 return window.requestAnimationFrame |…

  • canvas JavaScript
  • 2020/9/28
  • 1,307
  • 2020/9/27

    html自定义滚动条样式

    <html>     <style>         html,body{             width:100%; &…

  • css html JavaScript
  • 2020/9/27
  • 1,213
  • 2020/7/28

    原生js监听动画执行完事件

    that.parentNode.children[1].addEventListener("transitionend",function(){console.log("aaa")});

  • JavaScript
  • 2020/7/28
  • 958
  • 2020/7/22

    div子元素平分宽度

    父元素设置 display:flex flex-direction: row; 子元素设置 flex:1

  • JavaScript
  • 2020/7/22
  • 1,015
  • 2020/7/21

    js获取指定月份有多少天

    var d = new Date(2017,2,0); console.log(d.getDate());

  • JavaScript
  • 2020/7/21
  • 708
  • 2020/7/10

    input file更改样式思路

    设置input display:none 通过click事件调用input选择文件事件 <input type="file" id="upfile" name="file" placeholder="" style="di…

  • html JavaScript
  • 2020/7/10
  • 622