2020/7/8

echarts图表边距

: {      : , :}

  • echarts
  • 2020/7/8
  • helei
  • 1,195
  • 2020/7/7

    微信小程序全局变量

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

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

    echarts legend水平排列

    legend:{     //默认横向布局,纵向布局值为'vertical'     orient:'horizontal' }

  • echarts
  • 2020/7/3
  • helei
  • 1,307
  • 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;         user-select:none;

  • css html
  • 2020/7/1
  • helei
  • 641
  • 2020/7/1

    js判断手机

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

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

    css3动画执行完不恢复

    animation:showbody 5s forwards;

  • css html
  • 2020/7/1
  • helei
  • 670