-
Notifications
You must be signed in to change notification settings - Fork 2
/
demo.html
66 lines (52 loc) · 1.04 KB
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="dist/ordine.js"></script>
<script>
var api1,api2,resultado
var myQueue = new Ordine(function(){
console.log('3')
resultado = api1+api2;
console.log(resultado)
})
.enqueue(function(){
console.log('1')
window.setTimeout(function(){
api1 = 1
myQueue.next()
},1200)
})
.enqueue(function(teste){
console.log('2')
window.setTimeout(function(){
api2 = 3
myQueue.next()
},1000)
},true)
.run()
// .enqueue(function(){
// window.setTimeout(function(){
// console.log('>>>>>>>>third')
// myQueue.next()
// },1000);
// },true)
// .enqueue(function(){
// window.setTimeout(function(){
// console.log('>>>>>>>>fourth')
// myQueue.next()
// },1000);
// },false)
// .enqueue(function(){
// window.setTimeout(function(){
// console.log('>>>>>>>>fifth')
// myQueue.next()
// },1000);
// },true)
// myQueue.run()
</script>
</head>
<body>
</body>
</html>