class Animal(object): def __init__(self,color): self.color=color def eat(self): print("动物在吃!") def run(self): print("动物在跑!") class Cat(Animal):#继承Anim ...
分类:
编程语言 时间:
2019-06-30 20:34:50
阅读次数:
135
最近在写微信小程序,然后之前网页也写过css动画实现,就记一下 1.依靠css的动画效果 第一种实现动画效果的方法就是靠纯css来实现 这种方法可以实现很复杂的效果,像背景图片自动轮播(用infinite配合delay)什么的。 但是写起来比较复杂,而且没有办法根据事件触发,所以小程序推出了wx.c ...
分类:
微信 时间:
2019-06-30 09:39:03
阅读次数:
1799
1. vowel + vowel (1) If the first sound is [i], [a?], [e?], or [??], add a Y sound [j] to connect: [i]: [??]: [a?]: [e?]: for example: the apple [ði?? ...
分类:
其他好文 时间:
2019-06-28 00:22:41
阅读次数:
207
ProgressBar的常用属性:style,进度条的样式,默认为圆形,用style="?android:attr/progressBarStyleHorizontal"可以将进度条设为条状;android:progress,进度条当前所处进度;android:max,进度条总进度。 用线程实现进度 ...
分类:
移动开发 时间:
2019-06-27 00:50:48
阅读次数:
159
0x00 背景 本文来自于《Modern Web Application Firewalls Fingerprinting and Bypassing XSS Filters》其中的bypass xss过滤的部分,前面有根据WAF特征确定是哪个WAF的测试方法给略过了,重点来看一下后面绕xss的一些 ...
分类:
其他好文 时间:
2019-06-26 00:39:31
阅读次数:
139
一.事件: 1.鼠标事件 click( ) 触发或将函数绑定到指定元素的click事件 单击鼠标时 dblclick( ) 触发或将函数绑定到指定元素的dblclick事件 双击鼠标时 mouseover( ) 触发或将函数绑定到指定元素的mouseover事件 鼠标指针移过时 子元素有效 mous ...
分类:
Web程序 时间:
2019-06-17 15:32:25
阅读次数:
157
移动端双击回到顶部: var touchtime = new Date().getTime(); $(".header").on("click", function() { if(new Date().getTime() - touchtime < 500) { console.log("dblcl ...
分类:
移动开发 时间:
2019-06-10 13:38:19
阅读次数:
97
转自:https://www.lantrns.co/my-journey-introducing-the-data-build-tool-dbt-in-projects-analytical-stacks/ Not sure I remember how, but I had the good lu ...
分类:
数据库 时间:
2019-06-05 19:35:16
阅读次数:
179
、 基本的样式列表 具体想要什么效果官网查看就行,https://daneden.github.io/animate.css/ ...
分类:
Web程序 时间:
2019-05-27 19:28:44
阅读次数:
168
面向对象主要有三个特征:封装,继承,多态度。 一.封装 定义类语 class为定义类的关键字,后面跟名字(): python命名规范建议:类一般首字母单词大写,属性变量,函数首单词字母小写 这里name,age,sex为实例属性,通过类在实例化的时候赋值,count为类属性,可通过类名.属性名的方式 ...
分类:
编程语言 时间:
2019-05-25 10:09:30
阅读次数:
136