
web前端
qq_27717857
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
echarts 折线图数据绘制一个K线图表()
项目中客户有这个需求(主要想看涨跌),这里记录一下。效果图 : 简单的k线图需要四条数据(//开盘(open),收盘(close),最低(lowest),最高(highest))。开盘价取折线图的实时价,收盘价也取折线图的实时价,最低最高在随机取值就会有折线图的感觉(没有中间的块,只判断涨跌)。 折线图数据实时刷新,涨跌echarts会判断(开盘价和收盘价一样,后一条数据的值比前一条数据的...原创 2019-11-01 20:01:47 · 1689 阅读 · 0 评论 -
webApp 禁止IOS长按复制粘贴
原文地址 : https://blog.csdn.net/xutongbao/article/details/80595132?utm_source=blogxgwz6 /*设置IOS页面长按不可复制粘贴,但是IOS上出现input、textarea不能输入,因此将使用-webkit-user-select:auto;*/ *{ -webkit-touch-callout:none; ...转载 2019-01-04 10:49:05 · 1913 阅读 · 0 评论 -
Vue项目低版本兼容 Uncaught SyntaxError: Use of const in strict mode.
打包低版本手机有两个错: Uncaught SyntaxError: Use of const in strict mode. Cannot read property 'call' of undefined 部分参考自:https://blog.csdn.net/qq_25186543/article/details/80484215 安装 babel-polyfill 、es6-pro...原创 2019-09-20 11:53:34 · 4547 阅读 · 0 评论