2021年2月18日

617 ECharts 基本概念: 系列,dataset, 组件,定位,坐标系

摘要: ECharts 基本概念 ECharts 基本概念: 系列 系列(series)是指:一组数值映射成对应的图 【一个系列对应一张图,series中的一个子项对应一张图。】 案例:多系列混合 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <s 阅读全文

posted @ 2021-02-18 17:06 冲啊! 阅读(782) 评论(0) 推荐(0) 编辑

616 ECharts 入门案例:销售柱状图,进阶案例:多 ECharts 实例

摘要: ECharts 入门 入门案例:销售柱状图 <!DOCTYPE html> <html> <head> <script src="https://cdn.jsdelivr.net/npm/echarts@4.7.0/dist/echarts.min.js"></script> <style> #ch 阅读全文

posted @ 2021-02-18 16:16 冲啊! 阅读(257) 评论(0) 推荐(0) 编辑

615 WebGL,zrender,d3,Three.js

摘要: WebGL WebGL(Web Graphics Library)是一种 3D 绘图协议,WebGL可以为 HTML5 Canvas 提供硬件3D加速渲染,这样Web开发人员就可以借助系统显卡来在浏览器里更流畅地展示 3D 场景和模型了,还能创建复杂的导航和数据视觉化。 WebGL 案例分享 案例1 阅读全文

posted @ 2021-02-18 11:02 冲啊! 阅读(781) 评论(0) 推荐(0) 编辑

614 svg入门案例:绘制点、矩形、直线和圆形

摘要: 入门案例:绘制点、矩形、直线和圆形 <!DOCTYPE html> <html> <head> </head> <body> <svg width="800" height="800"> <rect width="50" height="50" style="fill:red;stroke-widt 阅读全文

posted @ 2021-02-18 10:29 冲啊! 阅读(720) 评论(0) 推荐(0) 编辑

613 python修改文件名

摘要: import os file_path = r'文件所在目录' files_list = os.listdir(file_path) # print(files_list) for name in files_list: if name.endswith('mp4'): # 以mp4结尾的文件 ol 阅读全文

posted @ 2021-02-18 09:13 冲啊! 阅读(73) 评论(0) 推荐(0) 编辑

导航