03 2019 档案

 
v-echart 按需加载
摘要:import 'v-charts/lib/style.css';import VeBar from 'v-charts/lib/bar' // 条形图import VeRadar from 'v-charts/lib/radar' // 雷达import VeHistogram from 'v-ch 阅读全文
posted @ 2019-03-28 09:22 momo-倩倩 阅读(400) 评论(0) 推荐(0)
svg 动画 透明度 放大缩小 x轴Y轴
摘要:参考链接:https://www.cnblogs.com/Chrimisia/p/6670303.html vue 中封装svg:http://www.cnblogs.com/Jiangchuanwei/p/9386792.html svg动画: 阅读全文
posted @ 2019-03-25 14:23 momo-倩倩 阅读(1512) 评论(1) 推荐(0)
canvas 添加线和删除线 及获取相关位置信息源码
摘要:https://github.com/lusase/lineDrawer.git 阅读全文
posted @ 2019-03-23 17:08 momo-倩倩 阅读(2731) 评论(0) 推荐(0)
svg的使用集合
摘要:1.效果 https://www.zhangxinxu.com/wordpress/2017/03/offset-path-css-animation/ 2.用法 https://www.cnblogs.com/Jiangchuanwei/p/9386792.html 3.源码 https://gi 阅读全文
posted @ 2019-03-23 16:02 momo-倩倩 阅读(212) 评论(0) 推荐(0)
echarts 自定义主题
摘要:https://blog.csdn.net/flitrue/article/details/52841338 import $echarts from 'echarts' import 'echarts/theme/dark.js' let myChart = $echarts.init(docum 阅读全文
posted @ 2019-03-23 13:33 momo-倩倩 阅读(1808) 评论(0) 推荐(0)
小程序常用
摘要:1、获取属性 <button data-idx = "1"></button> e.currentTarget.dataset.idx 2、小程序授权登录 3、事件绑定 <view bindtap="tabHandler"></view> 4、发起请求 wx.request 5、路由跳转 跳转到某个 阅读全文
posted @ 2019-03-06 19:42 momo-倩倩 阅读(239) 评论(0) 推荐(0)
前端面试常问的基础问题大全
摘要:1、es6的新特性 参考:https://www.jianshu.com/p/390a65d7a353 新增变量声明方式:let 块级作用域 const常量声明 promise 箭头函数:不需要function关键字来创建函数,可以省略return关键字,继承当前上下文的this关键字 Object 阅读全文
posted @ 2019-03-06 17:12 momo-倩倩 阅读(20415) 评论(0) 推荐(2)
常见的javascript知识点
摘要:1、js获取标签、class、id 获取id: document.getElementById("name") 获取标签:document.getElementsByTagName("div") 获取class: document.getElementsByClassName('.wrap') 阅读全文
posted @ 2019-03-02 12:27 momo-倩倩 阅读(187) 评论(0) 推荐(0)
使用jquey 须掌握的常见知识点
摘要:1、jquery获取标签、class、id、input的值 $("div") $(".active") $("#login") 获取input的值:$(this).find("input[name='name']").val() 获取文本的值:$(".wrap").find('div') 获取sel 阅读全文
posted @ 2019-03-02 12:16 momo-倩倩 阅读(177) 评论(0) 推荐(0)