setTimeout方法使用时需注意: //以下两种方式都行: setTimeout(function () { test(); }, 2000); //或者 setTimeout('test()',2000); function test(){ alert("aaaa"); } //以下是错误示例 ...
分类:
Web程序 时间:
2020-04-09 12:32:06
阅读次数:
87
title: 小书匠编辑器使用手册 tags: 小书匠,使用手册 slug: storywriter/tutorial 颠三倒四 var editorScroll = function () { setTimeout(function () { if (rightScrolling) { ... ...
分类:
其他好文 时间:
2020-04-07 22:18:05
阅读次数:
97
组件方法 // 同步方法 m1:function(a,b){ return a+b }, // 异步方法m2:function(a,b,ab){ setTimeout(function(){ cb(a+b) },2000) }, 单元测试 // 同步方法 it('test function m1', ...
分类:
其他好文 时间:
2020-04-06 22:11:51
阅读次数:
99
本文参考:http://www.ruanyifeng.com/blog/2014/02/css_transition_and_animation.html 1. transition基本用法: <!DOCTYPE html> <html lang="en"> <head> <meta charset ...
分类:
Web程序 时间:
2020-04-06 15:48:57
阅读次数:
86
CSS3 transition动画 1、transition-property 设置过渡的属性,比如:width height background-color2、transition-duration 设置过渡的时间,比如:1s 500ms3、transition-timing-function ...
分类:
Web程序 时间:
2020-04-06 13:26:02
阅读次数:
79
现在找个资源真是难的要死 window.setTimeout("window.location='https://www.baidu.com'",3000); //链接,时间,毫秒计算 ...
分类:
编程语言 时间:
2020-04-04 18:50:47
阅读次数:
64
transition 代表 过度/opacity 代表 透明度/transform 代表 旋转/1S代表1秒时间/这段代码的意思是 该元素的透明和旋转如果发生变化时会有1秒的过度效果。也就是渐隐渐显,和旋转的动画。
transition主要包含四个属性值:执行变换的属性transition-prop... ...
分类:
其他好文 时间:
2020-04-02 19:55:09
阅读次数:
125
```python from collections import namedtuple import os,time import random Query=namedtuple('Query',('y','x')) Transition=namedtuple('Transition',('y',... ...
分类:
编程语言 时间:
2020-04-02 01:30:00
阅读次数:
107
看下面这段程序 var name = "Bob"; var nameObj ={ name : "Tom", showName : function(){ console.log(this.name); }, waitShowName : function(){ setTimeout(this.sh ...
分类:
Web程序 时间:
2020-03-31 10:41:27
阅读次数:
64
.wapper li{ transition:All 0.4s ease-in-out; -webkit-transition:All 0.4s ease-in-out; -moz-transition:All 0.4s ease-in-out; -o-transition:All 0.4s eas ...
分类:
移动开发 时间:
2020-03-31 01:11:33
阅读次数:
100