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
  • 700
  • 2020/7/9

    div 放大缩小

    transform scale(x) x>1 放大  x<1 缩小

  • css html
  • 2020/7/9
  • 768
  • 2020/7/1

    html禁止选中文本

    -moz-user-select:none;         -webkit-user-select:none;         user-select:none;

  • css html
  • 2020/7/1
  • 738
  • 2020/7/1

    css3动画执行完不恢复

    animation:showbody 5s forwards;

  • css html
  • 2020/7/1
  • 775
  • 2020/7/1

    html手机自适应

    <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">

  • html
  • 2020/7/1
  • 1,042
  • 2020/6/30

    鼠标样式

  • css html
  • 2020/6/30
  • 1,138
  • 2020/6/23

    iframe调用父页面方法

    window.parent.fun1();

  • html JavaScript
  • 2020/6/23
  • 978