<!-- CSS3 animation动画: 1、@keyframes 定义关键帧动画 2、animation-name 动画名称 3、animation-duration 动画时间 4、animation-timing-function 动画曲线linear(匀速)|ease(缓冲)|steps( ...
分类:
Web程序 时间:
2020-03-14 16:36:50
阅读次数:
79
原理 CSS property: columns。CSS属性 columns 用来设置元素的列宽和列数。 兼容性 chrome 50+ IE 10+ android browser 2.1+ with webkit "MDN 文档" 效果 代码 心得 在过去本人还用 100+ 行代码写过 JS 版的 ...
分类:
Web程序 时间:
2020-03-14 14:53:54
阅读次数:
83
方法一:在main方法Application中配置@Bean PageHelper pageHelper(){ //分页插件 PageHelper pageHelper = new PageHelper(); Properties properties = new Properties(); pro... ...
分类:
编程语言 时间:
2020-03-14 01:13:55
阅读次数:
69
import turtle L=50 N=6 jiaodu=180-360/(N) tl=turtle.Turtle() #tl.speed(0)tl.screen.delay(0) def f1(): tl.fillcolor("yellow") tl.begin_fill() for i in ...
分类:
其他好文 时间:
2020-03-14 00:45:44
阅读次数:
89
一、打开文件 1.路径分隔符转义问题 ① open(r'C:\a\nb\c\d.txt') ②open('C:/a/nb/c/d.txt') 2.打开方法 file1=open(r'aaa/a.txt',mode='rt')#这里的file1是一个变量名,占用应用程序内存空间 3.操作文件 应用程序 ...
分类:
其他好文 时间:
2020-03-13 19:02:41
阅读次数:
63
解决办法: 需要修改.idea/workspace.xml <component name="PropertiesComponent"> <property name="last_opened_file_path" value="$PROJECT_DIR$/../acpp-po" /> <prope ...
分类:
其他好文 时间:
2020-03-13 18:52:44
阅读次数:
169
1. 定义变量,存储,每页显示多少条数据 var itemsPage = 25; 2.grid数据源 //列表源 var oStore = Ext.create('Ext.data.Store', { fields: ["a","b","c","d"], autoLoad: false, pageS ...
分类:
其他好文 时间:
2020-03-13 17:10:31
阅读次数:
61
Released under the MIT License. 在麻省理工学院的许可下发布。 Delete a property and trigger change if necessary. 删除属性并在必要时触发更改。 Check whether the object has the prop ...
分类:
其他好文 时间:
2020-03-13 12:53:34
阅读次数:
94
zoom缩放案例 源码:https://github.com/HK-Kevin/d...;demo:https://hk-kevin.github.io/d3...; 原理:通过zoom事件来重新绘制x轴scale,同时获得此时scale,在zoom事件的时候调用函数,将每个数据点的xScale重新 ...
分类:
Web程序 时间:
2020-03-13 10:18:00
阅读次数:
80
@mixin 指令允许我们定义一个可以在整个样式表中重复使用的样式。 @include 指令可以将混入(mixin)引入到文档中。 定义一个混入 混入(mixin)通过 @mixin 指令来定义。 @mixin name { property: value; property: value; ... ...
分类:
其他好文 时间:
2020-03-12 15:47:38
阅读次数:
69