1 class Solution: 2 def checkOverlap(self, radius: int, x_center: int, y_center: int, x1: int, y1: int, x2: int, y2: int) -> bool: 3 4 # Getting the c ...
分类:
其他好文 时间:
2020-04-05 09:35:21
阅读次数:
57
(1圆角边框 border-radius border-top-left-radius(左上角的形状) border-top-right-radius(右上角的形状) border-bottom-left-radius(左下角的形状) border-bottom-right-radius(右下角的形 ...
分类:
Web程序 时间:
2020-04-04 23:04:38
阅读次数:
134
IE兼容CSS3圆角border-radius的方法(同时兼容box-shadow,text-shadow)IE兼容CSS3圆角border-radius,box-shadow,text-shadow的方法 1.下载ie-css3.htc:http://www.zhangxinxu.com/stu. ...
分类:
其他好文 时间:
2020-04-01 23:40:25
阅读次数:
132
当然,插件市场也是有类似的封装的 <style lang="scss" scoped> .bg{ background: white; padding: 10rpx 0; } .swiper{ width: 710rpx; height: 220rpx; border-radius:15rpx ; ...
分类:
其他好文 时间:
2020-04-01 19:38:42
阅读次数:
121
import random?print(random.random())#(0,1) float 大于0且小于1之间的小数?print(random.randint(1,3)) #[1,3] 大于等于1且小于等于3之间的整数?print(random.randrange(1,3)) #[1,3) 大 ...
分类:
其他好文 时间:
2020-03-30 19:58:08
阅读次数:
59
高级的 文件、文件夹、压缩包 处理模块 shutil.copyfileobj(fsrc, fdst[, length]) 将文件内容拷贝到另一个文件中 1 import shutil2 3 shutil.copyfileobj(open('old.xml','r'), open('new.xml', ...
分类:
其他好文 时间:
2020-03-30 19:48:23
阅读次数:
80
连续座算法新建模板声明算法 /// /// 判断是否存在指定座数量的连续座(算法) /// /// 座位数量 /// 数据源 /// 符合条件的连续座位号 /// private static bool IsExistContinuity(int num,int[] dataSo... ...
分类:
编程语言 时间:
2020-03-28 13:34:53
阅读次数:
81
前言 总括:详解JavaScript中的this的一篇总结,不懂this这个难点,很多时候会造成一些困扰,写出一些bug不知如何收场,所以一起来写bug吧,不对,一起来写代码吧。 正文 ? JavaScript中的this格外的不一样,比如Java语言中的this是在代码的执行阶段是不可更改,而Ja ...
分类:
编程语言 时间:
2020-03-27 10:56:39
阅读次数:
80
安徽工程大学 Python程序设计 实验报告 班级 物流192 姓名 韩婧 学号3190505239 成绩 日期 2020.3.25 指导老师 修宇 实验二顺序结构程序设计(验证性实验)(二学时) 【实验目的】 (1)掌握数据的输入输出的方法; (2)熟悉顺序结构程序中语句的执行过程; (3)掌握顺 ...
分类:
编程语言 时间:
2020-03-26 01:28:29
阅读次数:
99
要图片圆形显示,需要设置border-radius:50%,还要设置overflow:hidden, 具体参考如下: https://www.cnblogs.com/china-fanny/p/10405516.html ...
分类:
微信 时间:
2020-03-25 21:00:16
阅读次数:
214