2020/7/7

微信小程序全局变量

1. 全局变量的设置 在miniprogram > app.js 文件中设置,globalData对象就是存储全局变量的。 App(…

  • 微信小程序
  • 2020/7/7
  • helei
  • 656
  • 2020/7/3

    echarts legend水平排列

    legend:{     //默认横向布局,纵向布局值为'vertical'   &…

  • echarts
  • 2020/7/3
  • helei
  • 1,304
  • 2020/7/3

    uniapp最外层充满屏幕

    uni-page-body,html,body{       height: 100%; }  

  • uni-app
  • 2020/7/3
  • helei
  • 616
  • 2020/7/1

    html禁止选中文本

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

  • csshtml
  • 2020/7/1
  • helei
  • 641
  • 2020/7/1

    js判断手机

    if (/(iPhone|iPad|iPod|iOS|Android)/i.test(navigator.userAgent)) { //移动端     &…

  • JavaScript
  • 2020/7/1
  • helei
  • 601
  • 2020/7/1

    css3动画执行完不恢复

    animation:showbody 5s forwards;

  • csshtml
  • 2020/7/1
  • helei
  • 669
  • 2020/7/1

    html手机自适应

    <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=…

  • html
  • 2020/7/1
  • helei
  • 877
  • 2020/6/30

    echarts自适应

    window.onresize = function () {     myChart.resize(); }

  • echartsJavaScript
  • 2020/6/30
  • helei
  • 918
  • 2020/6/30

    鼠标样式

  • csshtml
  • 2020/6/30
  • helei
  • 979
  • 2020/6/23

    iframe调用父页面方法

    window.parent.fun1();

  • htmlJavaScript
  • 2020/6/23
  • helei
  • 880