摘要: matplotlib plot 折线图使用体验 plot 只是默认情况下指代折线图,本身 plot 其实是 所有图标都可以表示。 效果图 代码 import matplotlib.pyplot as plt import numpy as np # 存在感没有很高 # x 和 y 需要一一对应 xp 阅读全文
posted @ 2025-11-18 11:34 fanbal 阅读(5) 评论(0) 推荐(0)
摘要: vue3 创建简单路由的简单笔记 导入和配置路由 import { createRouter, createWebHistory, type Router, type RouterOptions } from 'vue-router' import MainPage from '../../page 阅读全文
posted @ 2025-11-18 11:13 fanbal 阅读(4) 评论(0) 推荐(0)
摘要: html css 创建 ToolTip 笔记 效果: 代码如下: <template> <div class="tooltip"> 悬停查看提示 <span class="tooltiptext">这是一个CSS自定义tooltip</span> </div> </template> <style 阅读全文
posted @ 2025-11-18 10:30 fanbal 阅读(4) 评论(0) 推荐(0)