参考:https://blog.csdn.net/m0_37362454/article/details/81511427 1.figure语法及操作(1)figure语法说明 figure(num=None, figsize=None, dpi=None, facecolor=None, edge ...
分类:
其他好文 时间:
2021-06-28 18:31:21
阅读次数:
0
最近跟着技术胖学习了vue3 和 typescript 记录一下自己的学习过程 现在写一个简单的菜单选择功能 1 <template> 2 <div class="hello"> 3 <div> 4 <h2>欢迎光临呱呱的小店</h2> 5 <div>请选择你喜欢的服务员</div> 6 </div ...
分类:
其他好文 时间:
2021-06-28 18:26:24
阅读次数:
0
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> *{ margin: 0; padding: 0; } .boss{ display: block; width: ...
分类:
其他好文 时间:
2021-06-28 18:25:49
阅读次数:
0
<style> /* 定义名称为zhuan的动画 */ @keyframes zhuan { 0% { transform: translate(0, 0); } /* 水平移动 */ 30% { transform: translate(600px, 0); } /* 放大x,y 2倍*/ 50% ...
分类:
Web程序 时间:
2021-06-28 18:13:40
阅读次数:
0
斐波那契数列: 0 1 1 2 3 5 8 13 21 ...... 按某种特定顺序排列的数列 第一项为0,第二项为1,之后的每一项都等于前两项之和。 当数字过大时,这两种方法都有可能造出数字溢出,应使用 long 或者 double 型变量存储。 方法一: 我们用三个变量 a b c组成一个循环, ...
分类:
其他好文 时间:
2021-06-28 17:52:43
阅读次数:
0
mnist 自定义CNN模型与lenet import numpy as np import matplotlib.pyplot as plt from tensorflow import keras from keras.layers import Input, Dense, Dropout, A ...
分类:
Web程序 时间:
2021-06-28 17:47:00
阅读次数:
0
Markdown学习 标题 #+标题名字 #一级标题 #二级标题....... 二级标题 三级标题 四级标题 字体 粗体 ** ** ctrl+B 斜体 ** ctrl+I 分割线 *** 引用 > 这是引用内容 图片 超链接 超链接名字 这是百度超链接 列表 1.空格 -.空格 空格 表格 名字 ...
分类:
其他好文 时间:
2021-06-28 17:43:39
阅读次数:
0
Git使用 什么是版本控制 版本控制(Revision control)是一种在开发的过程中用于管理我们对文件、目录或工程等内容的修改历史,方便查看更改历史记录,备份以便恢复以前的版本的软件工程技术。 实现跨区域多人协同开发 追踪和记载一个或者多个文件的历史记录 组织和保护你的源代码和文档 统计工作 ...
分类:
其他好文 时间:
2021-06-28 17:37:43
阅读次数:
0
轻轻的 我来到你的身边 想念你的 是我落寞的寂寥 时光不在 但是 你的温柔 我永远记得 在这个狂热的夏天 挥舞在整个天空中 留下的 是我对你无尽的思念 以及我无限的情怀 想飞的水 ``` 2021.06.25 ...
分类:
其他好文 时间:
2021-06-25 17:19:45
阅读次数:
0
伪代码贴上 @Override protected void onCreate(Bundle savedInstanceState) { mWebView = (WebView) findViewById(R.id.webview); //获得webView initWebView(); } pri ...
分类:
移动开发 时间:
2021-06-25 17:11:53
阅读次数:
0