钙素 Canvas 是在 HTML5中新增的标签 用于在网页实时生成图像,并且可以操作图像内容,基本上它是一个可以用JavaScript操作的位图。也就是说我们将 通过JS完成画图而不是css 。 canvas 默认布局为 ,可以认为是一种特殊的图片。 走起 ~ canvas 划线 (宽高不能放在s ...
分类:
其他好文 时间:
2019-11-26 19:13:20
阅读次数:
67
题意: 思路:From https://blog.csdn.net/qq_36553623/article/details/76683438 大概就是把1e6里面的质因子能除的都除光之后借助两者gcd中有最大质因子的条件分类讨论 其实也就5类,重点是如何设分类的标准,其实唯一的标准就是对答案的贡献 ...
分类:
其他好文 时间:
2019-11-22 23:43:04
阅读次数:
97
She said her first word at 7 months old. Emlie graduated from a really good unviersity. I was married in 1983. that's when I became an adult. Her husb ...
分类:
其他好文 时间:
2019-11-21 20:11:21
阅读次数:
84
So, it is most likely the most crucial portion of the years spent researching for a college degree. You may be good at writing, hunting information, a ...
分类:
其他好文 时间:
2019-11-14 22:15:13
阅读次数:
94
Ujan has been lazy lately, but now has decided to bring his yard to good shape. First, he decided to paint the path from his house to the gate. The pa ...
分类:
其他好文 时间:
2019-11-10 11:44:17
阅读次数:
73
# ### 正则表达式 => 匹配分组 # 把想要匹配的内容,用小圆括号包起来,表达分组,并且会优先显示(优先显示就是只显示它)print(re.findall('(.*?)_good','wusir_good alex_good secret男_good'))# ?: 取消括号优先显示的功能pri ...
分类:
其他好文 时间:
2019-11-09 19:29:47
阅读次数:
88
Framework7 - is a free and open source framework to develop mobile, desktop or web apps with native look and feel. It is also an indispensable prototy ...
分类:
其他好文 时间:
2019-11-09 13:56:25
阅读次数:
102
Ujan has been lazy lately, but now has decided to bring his yard to good shape. First, he decided to paint the path from his house to the gate. The pa ...
分类:
其他好文 时间:
2019-11-09 00:25:44
阅读次数:
99
package feel.java; public interface Payment { public double downPay(double price, double area) ; } package feel.java; /** * @author WH * @project Java ...
分类:
其他好文 时间:
2019-11-06 22:54:40
阅读次数:
127
题意:给定数字A和数字B,问是否满足gcd(A,B)==1。 思路:可以直接写函数gcd。也可以用大数自带的gcd功能。 代码1: /* @author nimphy @create 2019-11-06-12:07 about: */ import java.io.*; import java.u ...
分类:
编程语言 时间:
2019-11-06 13:09:49
阅读次数:
87